printf("ip protocol: ");
ip_hdr=(struct ip *)(package+sizeof(struct ethhdr));
printf("version = %x ",ntohs(ip_hdr->ip_v));
- printf("header_length = %x ",ntohs(ip_hdr->ip_hl));
+ printf("header_length = %x \n",ntohs(ip_hdr->ip_hl));
// i=0;
//printf("service = %x ",*(ip_hdr->ip_tos));
//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),
- (i==3?"\n":"."));
+ //printf("ip_addresses: source = ");
+ //for(i=0;i<4;i++)
+ // printf("%x%s",*(ip_hdr->ip_src+i),
+ // (i==3?"\n":"."));
}
printf("\n");
}
printf("\n");
- printf("just beacon frames, ha? - wake up early! :)\n");
+ printf("wake up early! :)\n");
printf("\n");
}