Back to product page

UserConnected method


Called when a user connects to the listening channel.

Type

None

Syntax

  • Basic
object.UserConnected   Owner, Chan, User, ErrorCode, ErrorText
The UserConnected(object,Owner,Chan,User,ErrorCode,ErrorText) syntax has these parts:
objectAn expression evaluating to an object of type wodTunnelNotify.
OwnerRequired. A wodTunnelCom object. Reference to the wodTunnelCom instance that called this notification method.
ChanRequired. A Channel object. Reference to the channel that was started.
UserRequired. An User object. Reference to the user that connected.
ErrorCodeRequired. An Integer value. Specifies the error that occurred, if any.
ErrorTextRequired. A String value. Holds a text description of the error.

Remarks

This method is called only if you have implemented the IwodSSHTunnelNotify interface in your application and the wodTunnel1.Notification property has received a reference to an instance of your implementation.
The UserConnected notification method is called after you have allowed the User to connect and use the channel that they have chosen. From this point, they will be communicating with the destination service through the secure channel.

If the connection for the user fails (for whatever reason), the ErrorCode argument will hold one of the following nonzero values:

Code Description

0 No Error
1 Administratively prohibited
2 Connect failed
3 Unknown channel type
4 Resource shortage
5 Unknown error, or not specified


If the server provides a text description, it will be provided through the ErrorText argument.

Platforms

Windows