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-74 csinfo_t Members
                  
| Member | Description | 
|---|---|
| 
 | Address of translated  | 
| 
 | Connection id. A unique per-connection identifier which identifies the connection during its lifetime. | 
| 
 | Process ID associated with the connection. | 
| 
 | Zone ID associated with the connection. |