IGMP csinfo_t Structure

The csinfo_t structure is where connection state information is made available. For IGMP, the connection ID and process ID fields are unused since IGMP events are not tied to particular processes or connections.

typedef struct csinfo {
        uintptr_t cs_addr;
        uint64_t cs_cid;
        pid_t cs_pid;
        zoneid_t cs_zoneid;
 } csinfo_t;

The following list describes the csinfo_t members:

cs_addr

Address of translated ill_t *.

cs_cid

Connection ID. Unused for IGMP.

cs_pid

Process ID. Unused for IGMP.

cs_zoneid

Zone ID associated with the connection.