-rw-r--r-- | noncore/net/wellenreiter/daemon/source/sniffer.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/noncore/net/wellenreiter/daemon/source/sniffer.c b/noncore/net/wellenreiter/daemon/source/sniffer.c index 6f40503..31a5d13 100644 --- a/noncore/net/wellenreiter/daemon/source/sniffer.c +++ b/noncore/net/wellenreiter/daemon/source/sniffer.c @@ -5,12 +5,9 @@ able driver and not with wifi stuff. Btw. did i mention that i hate C? To compile use: - gcc wlan-sniffer.c -o wlan-sniffer -lpcap - - use it like this: - wlan-sniffer interface + gcc sniffer.c -o wlan-sniffer -lpcap */ #include "sniffer.h" @@ -214,9 +211,9 @@ void process_packets(u_char *useless,const struct pcap_pkthdr* pkthdr,const u_ch pinfoptr->isvalid = 0; return; } - /* Decoding successfull of beacon frame */ + /* Here should be the infos to the gui issued */ if (pinfoptr->cap_ESS == 1 &&pinfoptr->cap_IBSS ==0) { printf ("\nHave found an accesspoint:"); } |