<div class="content" name="SERVER_TRANSPORT_INFO_3" uuid="9c199b47-8b3c-4d17-81ed-8443f170830f"><p>The SERVER_TRANSPORT_INFO_3 structure contains information
about the specified transport protocol, including the name, address, and
password (credentials).</p><dl>
<dd>
<div><pre> typedef struct _SERVER_TRANSPORT_INFO_3 {
   DWORD svti3_numberofvcs;
   [string] wchar_t* svti3_transportname;
   [size_is(svti3_transportaddresslength)] 
     unsigned char* svti3_transportaddress;
   DWORD svti3_transportaddresslength;
   [string] wchar_t* svti3_networkaddress;
   [string] wchar_t* svti3_domain;
   unsigned long svti3_flags;
   DWORD svti3_passwordlength;
   unsigned char svti3_password[256];
 } SERVER_TRANSPORT_INFO_3,
  *PSERVER_TRANSPORT_INFO_3,
  *LPSERVER_TRANSPORT_INFO_3;
</pre></div>
</dd></dl><p><b>svti3_numberofvcs:</b>  Specifies a <b>DWORD</b>
value that indicates the number of <a href="1709f6a7-efb8-4ded-b7ae-5cee9ee36320#gt_60e0e1fa-66fe-41e1-b5e3-ceab97e53506" data-linktype="relative-path">clients</a> that are connected
to the <a href="1709f6a7-efb8-4ded-b7ae-5cee9ee36320#gt_434b0234-e970-4e8c-bdfa-e16a30d96703" data-linktype="relative-path">server</a> and that
are using the transport protocol that is specified by the <b>svti3_transportname</b>
member.</p><p><b>svti3_transportname:</b>   A pointer to
a null-terminated Unicode string that contains the implementation-specific name
of a device that implements support for the transport. This field is provided
by the transport driver and can depend on the physical network adapter over
which the transport runs.<a id="Appendix_A_Target_28"></a><a aria-label="Product behavior note 28" href="ebb74ff2-abb1-4e1b-a76a-563a5cbbea9a#Appendix_A_28" data-linktype="relative-path">&lt;28&gt;</a></p><p><b>svti3_transportaddress:</b>  A pointer
to a variable that contains the transport address that the server is using on
the transport device that is specified by the <b>svti3_transportname</b>
member. <a id="Appendix_A_Target_29"></a><a aria-label="Product behavior note 29" href="ebb74ff2-abb1-4e1b-a76a-563a5cbbea9a#Appendix_A_29" data-linktype="relative-path">&lt;29&gt;</a></p><dl>
<dd>
<p>This member is usually the NetBIOS name that the
server is using. In these instances, the name MUST be 16 characters long, and
the last character MUST be a blank character (0x20).</p>
</dd></dl><p><b>svti3_transportaddresslength:</b>  Specifies
a DWORD value that contains the length, in bytes, of the <b>svti3_transportaddress</b>
member.<a id="Appendix_A_Target_30"></a><a aria-label="Product behavior note 30" href="ebb74ff2-abb1-4e1b-a76a-563a5cbbea9a#Appendix_A_30" data-linktype="relative-path">&lt;30&gt;</a></p><p><b>svti3_networkaddress:</b>  A pointer to
a null-terminated character string that contains the address that the network
adapter is using. The string is transport-specific. The server MUST ignore this
field on receipt.<a id="Appendix_A_Target_31"></a><a aria-label="Product behavior note 31" href="ebb74ff2-abb1-4e1b-a76a-563a5cbbea9a#Appendix_A_31" data-linktype="relative-path">&lt;31&gt;</a></p><p><b>svti3_domain:</b>  A pointer to a
null-terminated character string that contains the name of the domain to which
the server announces its presence.</p><p><b>svti3_flags:</b>  This member MUST be a
combination of zero or more of the following values.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Value</p>
   </th>
   <th>
   <p>Meaning</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>SVTI2_REMAP_PIPE_NAMES 0x00000002</td>
  <td>If this value is set for an endpoint, client requests that arrive over the transport to open a named pipe MUST be rerouted (remapped) to the local pipe name $$\ServerName\PipeName.</td>
 </tr><tr>
  <td>SVTI2_SCOPED_NAME 0x00000004</td>
  <td>If this value is set for an endpoint, all shares attached to svti3_transportname are scoped shares.</td>
 </tr></tbody></table>
</dd></dl><p><b>svti3_passwordlength:</b>  Specifies a <b>DWORD</b>
value that indicates the number of valid bytes in the <b>svti3_password</b>
member.</p><p><b>svti3_password:</b>  Specifies the
credentials to use for the new transport address. If the <b>svti3_passwordlength</b>
member is zero, the credentials for the server MUST be used.</p></div>