The SERVER_TRANSPORT_INFO_0 structure contains information about the specified transporter, including name, address, and location on the network.
typedef struct _SERVER_TRANSPORT_INFO_0 {
DWORD svti0_numberofvcs;
LPTSTR svti0_transportname;
[size_is(svti0_transportaddresslength)] LPBYTE svti0_transportaddress;
DWORD svti0_transportaddresslength;
LPTSTR svti0_networkaddress;
} SERVER_TRANSPORT_INFO_0, *PSERVER_TRANSPORT_INFO_0, *LPSERVER_TRANSPORT_INFO_0;
#else
typedef struct _SERVER_TRANSPORT_INFO_0 {
DWORD svti0_numberofvcs;
LPTSTR svti0_transportname;
LPBYTE svti0_transportaddress;
DWORD svti0_transportaddresslength;
LPTSTR svti0_networkaddress;
} SERVER_TRANSPORT_INFO_0, *PSERVER_TRANSPORT_INFO_0, *LPSERVER_TRANSPORT_INFO_0;
#endif
Members
svti0_numberofvcs
Specifies the number of clients communicating with the server using this transport.
svti0_transportname
Specifies the device name of the transport.
svti0_transportaddress
Specifies the address of the server on this transport.
svti0_transportaddresslength
Specifies the length, in bytes, of the svti0_transportaddress member.
svti0_networkaddress
A null-terminated string representing the network address.
See Also