RasAdminServerGetInfo function

[This function is provided only for backward compatibility with Windows NT Server 4.0. It returns ERROR_CALL_NOT_IMPLEMENTED on Windows Server 2003. Applications should use the MprAdminServerGetInfo function.]

The RasAdminServerGetInfo function gets the server configuration of a RAS server.

Syntax

DWORD RasAdminServerGetInfo(
  _In_  const WCHAR         *lpszServer,
  _Out_       PRAS_SERVER_0 pRasServer0
);

Parameters

lpszServer [in]

Pointer to a null-terminated Unicode string that specifies the name of the Windows NT/Windows 2000 RAS server. If this parameter is NULL, the function returns information about the local computer. Specify the name with leading "\\" characters, in the form: \\servername.

pRasServer0 [out]

Pointer to the RAS_SERVER_0 structure that receives the number of ports configured on the server, the number of ports currently in use, and the server version number.

Return value

If the function succeeds, the return value is ERROR_SUCCESS.

If the function fails, the return value is an error code. Possible error codes include those returned by GetLastError for the CallNamedPipe function. There is no extended error information for this function; do not call GetLastError.

Remarks

To enumerate all RAS servers in a domain, call the NetServerEnum function and specify SV_TYPE_DIALIN for the servertype parameter.

Requirements

Requirement Value
End of client support
Windows 2000 Professional
End of server support
Windows 2000 Server
Header
Rassapi.h
Library
Rassapi.lib
DLL
Rassapi.dll

See also

Remote Access Service (RAS) Overview

RAS Server Administration Functions

NetServerEnum

RAS_SERVER_0