From 14af14446a79ff647bc7270d5382fd1d4d98f2cf Mon Sep 17 00:00:00 2001 From: hackbard Date: Thu, 14 Nov 2002 00:12:33 +0000 Subject: [PATCH] - --- hdw-sniff.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/hdw-sniff.c b/hdw-sniff.c index 1814857..6ba9c82 100644 --- a/hdw-sniff.c +++ b/hdw-sniff.c @@ -169,27 +169,27 @@ void pcap_process(u_char *info,const struct pcap_pkthdr *pcap_header, /* frame type */ if((w_hdr->frame_ctl & IEEE802_11_STYPE_BEACON)>0) strcpy(tmp_buf,"beacon"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_ATIM)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_ATIM)>0) strcpy(tmp_buf,"announcement traffic indication message"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_DISASSOC)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_DISASSOC)>0) strcpy(tmp_buf,"disassociation"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_AUTH)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_AUTH)>0) strcpy(tmp_buf,"authentification"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_DEAUTH)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_DEAUTH)>0) strcpy(tmp_buf,"deauthentification"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_ASSOC_REQ)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_ASSOC_REQ)>0) strcpy(tmp_buf,"association request"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_ASSOC_RESP)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_ASSOC_RESP)>0) strcpy(tmp_buf,"association response"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_REASSOC_REQ)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_REASSOC_REQ)>0) strcpy(tmp_buf,"reassociation request"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_REASSOC_RESP)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_REASSOC_RESP)>0) strcpy(tmp_buf,"reassociation response"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_PROBE_REQ)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_PROBE_REQ)>0) strcpy(tmp_buf,"probe request"); - if((w_hdr->frame_ctl & IEEE802_11_STYPE_PROBE_RESP)>0) + else if((w_hdr->frame_ctl & IEEE802_11_STYPE_PROBE_RESP)>0) strcpy(tmp_buf,"probe response"); - else strcpy(tmp_buf,"unknown"); + else strcpy(tmp_buf,"unknown yet!"); /* print out frame type */ printf("=> %s\n",tmp_buf); -- 2.20.1