<div class="content"><p> </p><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 <span><a href="1709f6a7-efb8-4ded-b7ae-5cee9ee36320#gt_60e0e1fa-66fe-41e1-b5e3-ceab97e53506" data-linktype="relative-path">clients</a></span> that are
connected to the <span><a href="1709f6a7-efb8-4ded-b7ae-5cee9ee36320#gt_434b0234-e970-4e8c-bdfa-e16a30d96703" data-linktype="relative-path">server</a></span> 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_27"></a><a aria-label="Product behavior note 27" href="ebb74ff2-abb1-4e1b-a76a-563a5cbbea9a#Appendix_A_27" data-linktype="relative-path">&lt;27&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_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><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_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><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_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_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>
  <p>SVTI2_REMAP_PIPE_NAMES</p>
  <p>0x00000002</p>
  </td>
  <td>
  <p>If this value is set for an <span><a href="1709f6a7-efb8-4ded-b7ae-5cee9ee36320#gt_b91c1e27-e8e0-499b-8c65-738006af72ee" data-linktype="relative-path">endpoint</a></span>, client
  requests that arrive over the transport to open a <span><a href="1709f6a7-efb8-4ded-b7ae-5cee9ee36320#gt_34f1dfa8-b1df-4d77-aa6e-d777422f9dca" data-linktype="relative-path">named pipe</a></span> MUST be
  rerouted (remapped) to the local pipe name $$\ServerName\PipeName.</p>
  </td>
 </tr><tr>
  <td>
  <p>SVTI2_SCOPED_NAME</p>
  <p>0x00000004</p>
  </td>
  <td>
  <p>If this value is set for an endpoint, all shares
  attached to <b>svti3_transportname</b> are <span><a href="1709f6a7-efb8-4ded-b7ae-5cee9ee36320#gt_ef819d1f-a512-491f-b23f-ada3a61d0eb9" data-linktype="relative-path">scoped shares</a></span>.</p>
  </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>