2.2.4.101 SERVER_XPORT_ENUM_STRUCT

The SERVER_XPORT_ENUM_STRUCT structure specifies the information level that the client requests in the NetrServerTransportEnum method and encapsulates the SERVER_XPORT_ENUM_UNION union that receives the entries that are enumerated by the server.

 typedef struct _SERVER_XPORT_ENUM_STRUCT {
   DWORD Level;
   [switch_is(Level)] SERVER_XPORT_ENUM_UNION XportInfo;
 } SERVER_XPORT_ENUM_STRUCT,
  *PSERVER_XPORT_ENUM_STRUCT,
  *LPSERVER_XPORT_ENUM_STRUCT;

Level: Specifies the information level of the data. This parameter MUST have one of the following values.

Value

Meaning

0

SERVER_XPORT_INFO_0_CONTAINER

1

SERVER_XPORT_INFO_1_CONTAINER

2

SERVER_XPORT_INFO_2_CONTAINER

3

SERVER_XPORT_INFO_3_CONTAINER

XportInfo: Contains information about file server transports in the format that is determined by the Level parameter, as shown in the preceding table. This member receives the enumerated information.