2.2.4.98 SERVER_XPORT_INFO_1_CONTAINER

The SERVER_XPORT_INFO_1_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_1_CONTAINER {
   DWORD EntriesRead;
   [size_is(EntriesRead)] LPSERVER_TRANSPORT_INFO_1 Buffer;
 } SERVER_XPORT_INFO_1_CONTAINER,
  *PSERVER_XPORT_INFO_1_CONTAINER;

EntriesRead: The number of entries that the method returns.

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