Rdp
rdp
- rdp
RDPClient
.CheckRDPAuth(host, port)
⇒CheckRDPAuthResponse
.IsRDP(host, port)
⇒IsRDPResponse
CheckRDPAuthResponse
:object
IsRDPResponse
:object
(rdp).RDPClient
RDPClient is a client for rdp servers
Kind: inner class of rdp
RDPClient
.CheckRDPAuth(host, port)
⇒CheckRDPAuthResponse
.IsRDP(host, port)
⇒IsRDPResponse
rdpClient.CheckRDPAuth(host, port) ⇒ CheckRDPAuthResponse
CheckRDPAuth checks if the given host and port are running rdp server with authentication and returns their metadata.
Kind: instance method of RDPClient
Returns: CheckRDPAuthResponse
- - The response from the check.
Throws:
error
- The error encountered during the check.
Param | Type | Description |
---|---|---|
host | string | The host to check. |
port | number | The port to check. |
Example
rdpClient.IsRDP(host, port) ⇒ IsRDPResponse
IsRDP checks if the given host and port are running rdp server. If connection is successful, it returns true. If connection is unsuccessful, it returns false and error. The Name of the OS is also returned if the connection is successful.
Kind: instance method of RDPClient
Returns: IsRDPResponse
- - The response from the check.
Throws:
error
- The error encountered during the check.
Param | Type | Description |
---|---|---|
host | string | The host to check. |
port | number | The port to check. |
Example
(rdp).CheckRDPAuthResponse : object
CheckRDPAuthResponse is the response from the CheckRDPAuth method.
Kind: inner typedef of rdp
(rdp).IsRDPResponse : object
IsRDPResponse is the response from the IsRDP method.
Kind: inner typedef of rdp
Was this page helpful?