search for: ip_ver

Displaying 1 result from an estimated 1 matches for "ip_ver".

Did you mean: ip_var
2007 Dec 20
6
DTrace IP provider, step 1
...csinfo is where connection state info can be made available if * connection IDs become supported by the kernel in the future. */ typedef struct csinfo { uintptr_t cs_addr; } csinfo_t; /* * ipinfo contains common IP info for both IPv4 and IPv6. */ typedef struct ipinfo { uint8_t ip_ver; /* IP version (4, 6) */ uint16_t ip_plength; /* payload length */ string ip_saddr; /* source address */ string ip_daddr; /* destination address */ } ipinfo_t; /* * illinfo contains IP Lower Layer info. */ typedef s...