udpsinfo_t Structure
            
         The udpsinfo_t structure contains udp state info.
               
typedef struct udpsinfo {
        uintptr_t       udps_addr;
	uint16_t	upds_lport;	/* local port */
	uint16_t	udps_rport;	/* remote port */
	string	        udps_laddr;	/* local address, as a string */
	string	        udps_raddr;	/* remote address, as a string */
} udpsinfo_t;Table 11-76 udpsinfo_t Members
                  
| Member | Description | 
|---|---|
| 
 | Address of translated  | 
| 
 | Local port associated with the UDP connection. | 
| 
 | Remote port associated with the UDP connection. | 
| 
 | Local address associated with the UDP connection, as a string | 
| 
 | Remote address associated with the UDP connection, as a string |