The SERVER_XPORT_INFO_2_CONTAINER structure contains a value that indicates the number of entries that the NetrServerTransportEnum method returns and a pointer to the buffer that contains the entries.
typedef struct _SERVER_XPORT_INFO_2_CONTAINER {
DWORD EntriesRead;
[size_is(EntriesRead)] LPSERVER_TRANSPORT_INFO_2 Buffer;
} SERVER_XPORT_INFO_2_CONTAINER,
*PSERVER_XPORT_INFO_2_CONTAINER;
EntriesRead: The number of entries that the method returns.
Buffer: A pointer to the SERVER_TRANSPORT_INFO_2 entries that the method returns.