From: hackbard <hackbard>
Date: Sat, 7 Sep 2002 04:12:24 +0000 (+0000)
Subject: bla
X-Git-Url: https://hackdaworld.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b943da1deb33efbbdcd649d92c6a369c317cfd5;p=my-code%2Fhdw-sniff.git

bla
---

diff --git a/hdw-sniff.c b/hdw-sniff.c
index 48e7bdc..d6f2b0c 100644
--- a/hdw-sniff.c
+++ b/hdw-sniff.c
@@ -61,12 +61,14 @@ int main(int argc, char *argv[]) {
 	}
 	
 	/* is ieee802.11 ? -- we assume yes :) */
-	
-	
+	/* ...					*/
+
+
+	/* ieee802.3 */
 	/* ethernet */
 	e_hdr=(struct ethhdr *)package;
 	/* what types ? */
-	printf("types = ");
+	printf("type = ");
 	printf("%x  ",ntohs(e_hdr->h_proto));
 	printf("dest_addr = ");
 	for(i=0;i<ETH_ALEN;i++)
@@ -85,7 +87,7 @@ int main(int argc, char *argv[]) {
 		//printf("total_length(dec.) = %hu \n",*(ip_hdr->ip_len));
 		//printf("ip_addresses: source = ");
 		//for(i=0;i<4;i++)
-		//	printf("%x%s",*(ip_hdr->ip_src+i),
+		//	printf("%x%s",ntohl(ip_hdr->ip_src),
 		//			(i==3?"\n":"."));