Displaying 1 result from an estimated 1 matches for "ip_saddr".
Did you mean:
ip_addr
2007 Dec 20
6
DTrace IP provider, step 1
...e.
*/
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 struct illinfo {
string ill_name; /* interface name */
int8_t ill_local; /* is loc...