airgorah 0.7.3

A WiFi security auditing software mainly based on aircrack-ng tools suite
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod app;
mod deauth;
mod decrypt;
mod interface;
mod scan;
mod settings;

use crate::frontend::interfaces::AppData;
use std::rc::Rc;

pub fn connect(app: &gtk4::Application, app_data: Rc<AppData>) {
    app::connect(app, app_data.clone());
    scan::connect(app_data.clone());
    interface::connect(app_data.clone());
    deauth::connect(app_data.clone());
    decrypt::connect(app_data.clone());
    settings::connect(app_data);
}