2.2.4.100 SERVER_XPORT_INFO_3_CONTAINER

The SERVER_XPORT_INFO_3_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_3_CONTAINER {
   DWORD EntriesRead;
   [size_is(EntriesRead)] LPSERVER_TRANSPORT_INFO_3 Buffer;
 } SERVER_XPORT_INFO_3_CONTAINER,
  *PSERVER_XPORT_INFO_3_CONTAINER;

EntriesRead: The number of entries that the method returns.

Buffer: A pointer to the SERVER_TRANSPORT_INFO_3 entries that the method returns.