#ifndef NPCAP_HANDLE_H #define NPCAP_HANDLE_H #include #include "nethdr.h" #include #include #include #include #include #include #include int handle_eth(struct ethhdr* eth); int handle_arp(struct arphdr_c* arp); int handle_ip(struct iphdr* ip); int handle_icmp(struct icmphdr* icmp); int handle_tcp(struct tcphdr* tcp); int handle_udp(struct udphdr* udp); #endif