NetServerTransportDel

The NetServerTransportDel function unbinds (or disconnects) the transport protocol from the server. Effectively, the server can no longer communicate with clients using the transport protocol. The server will no longer process client request from the active transport protocol, such as TCP, NetBEUI, and XNS.

Security Requirements

Only members of the Administrators local group can successfully execute NetServerTransportDel.

NET_API_STATUS NetServerTransportDel(
  LPWSTR servername,    
  LPWSTR transportname  
);
 

Parameters

servername
Pointer to a Unicode string containing the name of the remote server on which the function is to execute. A NULL pointer or string specifies the local computer.
transportname
Pointer to a Unicode string containing the name of the transport protocol from which to unbind.

Return Values

If the function returns account information, the return value is NERR_Success.

If the function fails, the return value is one of the following error codes.

Value Meaning
ERROR_ACCESS_DENIED The user does not have access to the requested information.
ERROR_INVALID_LEVEL The value specified for the Level parameter is invalid.
ERROR_INVALID_PARAMETER The specified parameter is invalid.
ERROR_NOT_ENOUGH_MEMORY Insufficient memory is available.
NERR_NetNameNotFound The sharename does not exist.

QuickInfo

  Windows NT: Requires version 3.1 or later.
  Windows: Unsupported.
  Windows CE: Unsupported.
  Header: Declared in lmserver.h.
  Import Library: Use netapi32.lib.

See Also

Networking (Net) Overview, Net Functions, NetServerTransportAdd