2 * copyright (c) 2001-2009 Emil Mikulic.
4 * decode.h: packet decoding.
6 * You may use, modify and redistribute this file under the terms of the
7 * GNU General Public License version 2. (see COPYING.GPL)
11 #include <netinet/in_systm.h> /* n_time */
13 #include <netinet/in.h> /* in_addr_t */
14 #include <netinet/ip.h> /* struct ip */
17 #define FDDI_HDR_LEN 21
18 #define IP_HDR_LEN sizeof(struct ip)
19 #define IPV6_HDR_LEN sizeof(struct ip6_hdr)
20 #define TCP_HDR_LEN sizeof(struct tcphdr)
21 #define UDP_HDR_LEN sizeof(struct udphdr)
22 #define NULL_HDR_LEN 4
23 #define PPPOE_HDR_LEN 8
24 #define SLL_HDR_LEN 16
27 #ifndef ETHER_ADDR_LEN
28 #define ETHER_ADDR_LEN 6
37 const linkhdr_t
*getlinkhdr(int linktype
);
38 int getsnaplen(const linkhdr_t
*lh
);
39 char *ip_to_str(const in_addr_t ip
);
40 char *ip6_to_str(const struct in6_addr
*ip6
);
43 /* Fields are in host byte order (except IPs) */
46 struct in6_addr src_ip6
;
50 struct in6_addr dest_ip6
;
54 sa_family_t af
; /* AF_{UNSPEC, INET, INET6} */
55 uint8_t proto
; /* IPPROTO_{TCP, UDP, ICMP} */
56 uint8_t tcp_flags
; /* only for TCP */
57 uint16_t src_port
, dest_port
; /* only for TCP, UDP */
58 uint8_t src_mac
[ETHER_ADDR_LEN
],
59 dst_mac
[ETHER_ADDR_LEN
]; /* only for Ethernet */
62 /* vim:set ts=3 sw=3 tw=78 expandtab: */