airgorah 0.1.0

A WiFi auditing software that can perform deauth attacks and passwords recovery
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::frontend::interfaces::*;
use glib::clone;
use std::rc::Rc;

pub fn connect_capture_button(app_data: Rc<AppData>) {
    app_data
        .capture_but
        .connect_clicked(clone!(@strong app_data => move |_| {
            InfoDialog::spawn(
                &app_data.main_window,
                "Comming Soon",
                "This feature will be available in a future version",
            );
        }));
}