Displaying 1 result from an estimated 1 matches for "pkt_addr".
Did you mean:
  dst_addr
  
2007 Dec 20
6
DTrace IP provider, step 1
...om to accommodate future
enhancements to the network stack.
The arguments contain:
/*
 * pktinfo is where packet ID info can be made available for deeper
 * analysis if packet IDs become supported by the kernel in the future.
 */
typedef struct pktinfo {
        uint64_t pkt_id;
        uintptr_t pkt_addr;
} pktinfo_t;
/*
 * 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 ipi...