해석쫌 부탁드려요 ㅠㅠ
미나래
질문 제목 : 리눅스에서 실행이 되는건데 디바이스 잡아서 확인하고 하는건데 한줄한줄 해석좀 부탁드려요 ㅠㅠ꼭 한줄한줄 무슨 뜻인지 해석쫌 부탁드립니다 ㅠㅠ질문 내용 :
#include stdio.h
#include pcap.h
#include arpa/inet.h
#include netinet/in.h
#include netinet/ip.h
#include netinet/tcp.h
#include netinet/udp.h
#include net/ethernet.h
void packet_handler (u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data);
int main ()
{
char errbuf[pcap_errbuf_size];
char *dev;
int ret;
struct in_addr net_addr, mask_addr;
char *net;
char *mask;
int loop;
pcap_t *packet_d;
bpf_u_int32 maskp, netp;
printf(this....program\n);
printf(----------------------\n);
dev = pcap_lookupdev(errbuf);
if(dev == null){
printf(notfound........device%s\n,errbuf);
exit(1);
}
printf(device : %s\n,dev);
ret = pcap_lookupnet(dev,&netp,&maskp,errbuf);
if(ret == -1){
printf(pcap_lookupneterror : %s\n,errbuf);
}
printf(netp : %d\n,netp);
printf(maskp : %d\n,maskp);
printf(------------------------\n);
net_addr.s_addr = netp;
net = inet_ntoa(net_addr);
printf(net : %s\n,net);
net_addr.s_addr = maskp;
mask = inet_ntoa(net_addr);
printf(mask : %s\n,mask);
printf(------------------------\n);
packet_d = pcap_open_live(dev, 1024, 0, 100, errbuf);
if(packet_d == null){
printf(%s\n,errbuf);
exit(1);
}
loop = pcap_loop(packet_d, 1, packet_handler, errbuf);
if(loop 0){
printf(%s\n,errbuf);
}
pcap_close(packet_d);
return 0;
}
void packet_handler (u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data)
{
struct ether_header *ether;
unsigned short ether_type;
u_char *tmp_data;
struct ip *ip_h;
static int count = 0;
printf(struct ether_header size === %d\n,sizeof(struct ether_header));
ether = (struct ether_header *) pkt_data;
tmp_data = (u_char *) pkt_data;
tmp_data = tmp_data + sizeof(struct ether_header);
ether_type = ntohs(ether - ether_type);
if(ether_type == ethertype_ip){
printf(size ip struct : %d\n,sizeof(struct ip));
ip_h = (struct ip *) tmp_data;
printf(version : %d\n,ip_h - ip_v);
}
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |