' Telnet Custom Control
' (C) Copyright 1993, 1994 by Distinct Corporation
' All rights reserved

' actions
Const ACTION_NONE = 0
Const ACTION_CONNECT = 1
Const ACTION_DISCONNECT = 2
Const ACTION_ABORT = 3

' echo modes
Const ECHO_REMOTE = 0
Const ECHO_LOCAL = 1

' error codes
Const ERR_CHANGE_PORT = 1
Const ERR_CANNOT_CONNECT = 2
Const ERR_CONNECT_TO_RECV = 3
Const ERR_CONNECT_TO_POLL = 4
Const ERR_CONNECT_TO_SEND = 5
Const ERR_NO_HOST_NAME = 6
Const ERR_NO_TERM_TYPE = 7
