struct _TDI_ADDRESS_IP {
USHORT sin_port;
ULONG in_addr;
UCHAR sin_zero[8];
} TDI_ADDRESS_IP, *PTDI_ADDRESS_IP;
TDI_ADDRESS_IP contains an IP address (packed and aligned as necessary).
Members
sin_port
Specifies a TCP or UDP port number.
in_addr
Specifies the IP address.
sin_zero[8]
Specifies an array set to zero.
See Also