csinfo_t Structure

The csinfo_t structure is where connection state info is made available. It contains a unique (system-wide) connection ID, and the process ID and zone ID associated with the connection.

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

Table 11-61 csinfo_t Members

Member Description

cs_addr

Address of translated ip_xmit_attr_t *

cs_cid

Connection ID. A unique per-connection identifier which identifies the connection during its lifetime.

cs_pid

Process ID associated with the connection.

cs_zoneid

Zone ID associated with the connection.