Passion/Network

libpcap 함수 분석

sunshout 2010. 7. 5. 13:34

/* 패킷 캡쳐링 통계 정보 */
int pcap_stat(pcap_t *p, struct pcap_stat *ps)

struct pcap_stat {
   u_int ps_recv;   총 패킷 수
   u_int ps_drop;   드라이버에서 드랍된 패킷 수
   u_int ps_ifdrop; 인터페이스에서 드랍된 패킷 수
};