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

udps_addr

Address of translated udp_t *.

udps_lport

Local port associated with the UDP connection.

udps_rport

Remote port associated with the UDP connection.

udps_laddr

Local address associated with the UDP connection, as a string

udps_raddr

Remote address associated with the UDP connection, as a string