Go to the source code of this file.
Defines | |
#define | DO_NOT_DISPLAY_ACK |
#define | DO_NOT_DISPLAY_BEACON |
#define | DO_NOT_DISPLAY_CONTROL |
#define | DO_NOT_DISPLAY_DATA |
#define | DO_NOT_DISPLAY_PROBE |
#define DO_NOT_DISPLAY_ACK |
Value:
( IS_DISPLAY_ACK(config.DoNotDisplay) && \ ( (WLAN_GET_FC_FTYPE (Res.TypeSubtype) == WLAN_FTYPE_CTL) && \ (WLAN_GET_FC_FSTYPE(Res.TypeSubtype) == WLAN_FSTYPE_ACK) \ ) \ )
Definition at line 29 of file scanner.h.
Referenced by main().
#define DO_NOT_DISPLAY_BEACON |
Value:
( IS_DISPLAY_BEACON(config.DoNotDisplay) && \ ( (WLAN_GET_FC_FTYPE (Res.TypeSubtype) == WLAN_FTYPE_MGMT) && \ (WLAN_GET_FC_FSTYPE(Res.TypeSubtype) == WLAN_FSTYPE_BEACON) \ ) \ )
Definition at line 35 of file scanner.h.
Referenced by main().
#define DO_NOT_DISPLAY_CONTROL |
Value:
( IS_DISPLAY_CONTROL(config.DoNotDisplay) && \ (WLAN_GET_FC_FTYPE (Res.TypeSubtype) == WLAN_FTYPE_CTL) \ )
Definition at line 41 of file scanner.h.
Referenced by main().
#define DO_NOT_DISPLAY_DATA |
Value:
( IS_DISPLAY_DATA(config.DoNotDisplay) && \ (WLAN_GET_FC_FTYPE (Res.TypeSubtype) == WLAN_FTYPE_DATA) \ )
Definition at line 45 of file scanner.h.
Referenced by main().
#define DO_NOT_DISPLAY_PROBE |
Value:
( IS_DISPLAY_PROBE(config.DoNotDisplay) && \ (( (WLAN_GET_FC_FTYPE (Res.TypeSubtype) == WLAN_FTYPE_MGMT) && \ (WLAN_GET_FC_FSTYPE(Res.TypeSubtype) == WLAN_FSTYPE_PROBEREQ) \ ) || \ ( (WLAN_GET_FC_FTYPE (Res.TypeSubtype) == WLAN_FTYPE_MGMT) && \ (WLAN_GET_FC_FSTYPE(Res.TypeSubtype) == WLAN_FSTYPE_PROBERESP) \ ) \ ) \ )
Definition at line 49 of file scanner.h.
Referenced by main().