mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-24 18:43:39 +08:00
b116cd9ac4
on OpenSolaris, or Solaris Express Community Edition, build 125 and later. The attached patch introduces support for printing out the IPNET headers used for packet capture inside of zones that share their networking with the global zone and for packets "transmitted" between zones. tcpdump 4.0.0 will ship with builds 129 and later of OpenSolaris/SXCE and when run as root with the '-L' option, should behave as below to indicate that the system is fully functional: Data link types (use option -y to set): DOCSIS (DOCSIS) (printing not supported) IPNET (Solaris IPNET) EN10MB (Ethernet) Cheers, Darren
14 lines
332 B
C
14 lines
332 B
C
typedef struct ipnet_hdr {
|
|
uint8_t iph_version;
|
|
uint8_t iph_family;
|
|
uint16_t iph_htype;
|
|
uint32_t iph_pktlen;
|
|
uint32_t iph_ifindex;
|
|
uint32_t iph_grifindex;
|
|
uint32_t iph_zsrc;
|
|
uint32_t iph_zdst;
|
|
} ipnet_hdr_t;
|
|
|
|
#define IPH_AF_INET 2 /* Matches Solaris's AF_INET */
|
|
#define IPH_AF_INET6 26 /* Matches Solaris's AF_INET6 */
|