-
AI (Artificial Intelligence)
netinet/ip.h [iphddr, ip]
ip에는 iphddr에 없는 struct in_addr ip_src, ip_dst가 존재한다. struct in_addr의 구조는 다음과 같다. struct in_addr { union { struct { unsigned char s_b1, s_b2, s_b3, s_b4; } S_un_b; struct { unsigned short s_w1, s_w2; } S_un_w; unsigned long S_addr; } S_un; }; 출력 할때 xxx.xxx.xxx.xxx 와 같은 형태로 출력하려면 ip 구조체에 ip_src, ip_dst를 이용하면 된다. /* Copyright (C) 1991,92,93,95,96,97,98,99,2000,2009 Free Software Foundation, Inc. Th..
2014. 5. 9.