2.2.4.97 SERVER_XPORT_INFO_0_CONTAINER

The SERVER_XPORT_INFO_0_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_0_CONTAINER {
   DWORD EntriesRead;
   [size_is(EntriesRead)] LPSERVER_TRANSPORT_INFO_0 Buffer;
 } SERVER_XPORT_INFO_0_CONTAINER,
  *PSERVER_XPORT_INFO_0_CONTAINER;

EntriesRead: The number of entries that the method returns.

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