003 File Manager
Current Path:
/usr/src/contrib/wpa/hostapd
usr
/
src
/
contrib
/
wpa
/
hostapd
/
📁
..
📄
ChangeLog
(63.82 KB)
📄
README
(15.55 KB)
📄
README-MULTI-AP
(8.07 KB)
📄
README-WPS
(14.02 KB)
📄
config_file.c
(129.23 KB)
📄
config_file.h
(720 B)
📄
ctrl_iface.c
(110.53 KB)
📄
ctrl_iface.h
(998 B)
📄
defconfig
(12.89 KB)
📄
eap_register.c
(3.24 KB)
📄
eap_register.h
(309 B)
📄
eap_testing.txt
(2.52 KB)
📄
hapd_module_tests.c
(364 B)
📄
hlr_auc_gw.c
(23.98 KB)
📄
hlr_auc_gw.milenage_db
(909 B)
📄
hlr_auc_gw.txt
(3.17 KB)
📄
hostapd.8
(1.47 KB)
📄
hostapd.accept
(276 B)
📄
hostapd.conf
(110.95 KB)
📄
hostapd.deny
(144 B)
📄
hostapd.eap_user
(4.27 KB)
📄
hostapd.eap_user_sqlite
(909 B)
📄
hostapd.radius_clients
(142 B)
📄
hostapd.sim_db
(409 B)
📄
hostapd.vlan
(282 B)
📄
hostapd.wpa_psk
(834 B)
📄
hostapd_cli.1
(1.81 KB)
📄
hostapd_cli.c
(50.17 KB)
📁
logwatch
📄
main.c
(22.3 KB)
📄
nt_password_hash.c
(922 B)
📄
wired.conf
(1.13 KB)
📄
wps-ap-nfc.py
(9.77 KB)
Editing: ctrl_iface.h
/* * hostapd / UNIX domain socket -based control interface * Copyright (c) 2004, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef CTRL_IFACE_H #define CTRL_IFACE_H #ifndef CONFIG_NO_CTRL_IFACE int hostapd_ctrl_iface_init(struct hostapd_data *hapd); void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd); int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface); void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface); #else /* CONFIG_NO_CTRL_IFACE */ static inline int hostapd_ctrl_iface_init(struct hostapd_data *hapd) { return 0; } static inline void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd) { } static inline int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface) { return 0; } static inline void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface) { } #endif /* CONFIG_NO_CTRL_IFACE */ #endif /* CTRL_IFACE_H */
Upload File
Create Folder