Annotation of embedtools/inc/dwds.h, revision 1.1.2.4

1.1.2.1   misho       1: #ifndef __DWDS_H
                      2: #define __DWDS_H
                      3: 
                      4: 
1.1.2.2   misho       5: #define DWDS_CONFIG    "/etc/dwds.conf"
                      6: #define DWDS_STATEDIR  "/tmp"
                      7: #define DWDS_DISCJOIN  "0"
1.1.2.3   misho       8: #define DWDS_NAME      "dWDS"
                      9: 
                     10: 
                     11: struct dwds_if {
                     12:        char            if_name[IFNAMSIZ];
                     13:        uint8_t         if_bssid[IEEE80211_ADDR_LEN];
                     14: 
                     15:        struct dwds_if  *if_next;
                     16: };
1.1.2.2   misho      17: 
                     18: 
1.1.2.4 ! misho      19: inline int wifi_getParent(const char *csVAP, char *psParent, size_t plen);
        !            20: inline int wifi_chkIface(const char *csIface, char **ppsIF, int nIF);
        !            21: inline int wifi_isWDS(int fd, const char *csVAP);
        !            22: 
        !            23: 
1.1.2.1   misho      24: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>