2010-02-14 14:40:18 -05:00
|
|
|
#ifndef HEADER_CURL_ARPA_TELNET_H
|
|
|
|
#define HEADER_CURL_ARPA_TELNET_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2010-02-14 14:40:18 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-08-03 11:11:28 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2011-11-25 04:35:34 -05:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2010-02-14 14:40:18 -05:00
|
|
|
*
|
2001-08-03 11:11:28 -04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-08-03 11:11:28 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2002-06-11 07:13:01 -04:00
|
|
|
#ifndef CURL_DISABLE_TELNET
|
1999-12-29 09:20:26 -05:00
|
|
|
/*
|
2001-08-03 11:11:28 -04:00
|
|
|
* Telnet option defines. Add more here if in need.
|
1999-12-29 09:20:26 -05:00
|
|
|
*/
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELOPT_BINARY 0 /* binary 8bit data */
|
2011-11-25 04:35:34 -05:00
|
|
|
#define CURL_TELOPT_ECHO 1 /* just echo! */
|
2011-04-19 09:54:13 -04:00
|
|
|
#define CURL_TELOPT_SGA 3 /* Suppress Go Ahead */
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELOPT_EXOPL 255 /* EXtended OPtions List */
|
|
|
|
#define CURL_TELOPT_TTYPE 24 /* Terminal TYPE */
|
2011-11-25 04:35:34 -05:00
|
|
|
#define CURL_TELOPT_NAWS 31 /* Negotiate About Window Size */
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELOPT_XDISPLOC 35 /* X DISPlay LOCation */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELOPT_NEW_ENVIRON 39 /* NEW ENVIRONment variables */
|
|
|
|
#define CURL_NEW_ENV_VAR 0
|
|
|
|
#define CURL_NEW_ENV_VALUE 1
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
/*
|
2001-08-03 11:11:28 -04:00
|
|
|
* The telnet options represented as strings
|
1999-12-29 09:20:26 -05:00
|
|
|
*/
|
2004-12-20 13:23:43 -05:00
|
|
|
static const char * const telnetoptions[]=
|
2001-08-03 11:11:28 -04:00
|
|
|
{
|
|
|
|
"BINARY", "ECHO", "RCP", "SUPPRESS GO AHEAD",
|
2001-11-22 04:39:03 -05:00
|
|
|
"NAME", "STATUS", "TIMING MARK", "RCTE",
|
2001-08-03 11:11:28 -04:00
|
|
|
"NAOL", "NAOP", "NAOCRD", "NAOHTS",
|
|
|
|
"NAOHTD", "NAOFFD", "NAOVTS", "NAOVTD",
|
|
|
|
"NAOLFD", "EXTEND ASCII", "LOGOUT", "BYTE MACRO",
|
|
|
|
"DE TERMINAL", "SUPDUP", "SUPDUP OUTPUT", "SEND LOCATION",
|
|
|
|
"TERM TYPE", "END OF RECORD", "TACACS UID", "OUTPUT MARKING",
|
|
|
|
"TTYLOC", "3270 REGIME", "X3 PAD", "NAWS",
|
|
|
|
"TERM SPEED", "LFLOW", "LINEMODE", "XDISPLOC",
|
|
|
|
"OLD-ENVIRON", "AUTHENTICATION", "ENCRYPT", "NEW-ENVIRON"
|
1999-12-29 09:20:26 -05:00
|
|
|
};
|
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELOPT_MAXIMUM CURL_TELOPT_NEW_ENVIRON
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELOPT_OK(x) ((x) <= CURL_TELOPT_MAXIMUM)
|
|
|
|
#define CURL_TELOPT(x) telnetoptions[x]
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2010-02-14 14:40:18 -05:00
|
|
|
#define CURL_NTELOPTS 40
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
/*
|
2001-08-03 11:11:28 -04:00
|
|
|
* First some defines
|
1999-12-29 09:20:26 -05:00
|
|
|
*/
|
2010-02-14 14:40:18 -05:00
|
|
|
#define CURL_xEOF 236 /* End Of File */
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_SE 240 /* Sub negotiation End */
|
|
|
|
#define CURL_NOP 241 /* No OPeration */
|
|
|
|
#define CURL_DM 242 /* Data Mark */
|
|
|
|
#define CURL_GA 249 /* Go Ahead, reverse the line */
|
|
|
|
#define CURL_SB 250 /* SuBnegotiation */
|
|
|
|
#define CURL_WILL 251 /* Our side WILL use this option */
|
|
|
|
#define CURL_WONT 252 /* Our side WON'T use this option */
|
|
|
|
#define CURL_DO 253 /* DO use this option! */
|
|
|
|
#define CURL_DONT 254 /* DON'T use this option! */
|
|
|
|
#define CURL_IAC 255 /* Interpret As Command */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
/*
|
2001-08-03 11:11:28 -04:00
|
|
|
* Then those numbers represented as strings:
|
1999-12-29 09:20:26 -05:00
|
|
|
*/
|
2004-12-20 13:23:43 -05:00
|
|
|
static const char * const telnetcmds[]=
|
2001-08-03 11:11:28 -04:00
|
|
|
{
|
|
|
|
"EOF", "SUSP", "ABORT", "EOR", "SE",
|
|
|
|
"NOP", "DMARK", "BRK", "IP", "AO",
|
|
|
|
"AYT", "EC", "EL", "GA", "SB",
|
|
|
|
"WILL", "WONT", "DO", "DONT", "IAC"
|
1999-12-29 09:20:26 -05:00
|
|
|
};
|
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELCMD_MINIMUM CURL_xEOF /* the first one */
|
|
|
|
#define CURL_TELCMD_MAXIMUM CURL_IAC /* surprise, 255 is the last one! ;-) */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELQUAL_IS 0
|
|
|
|
#define CURL_TELQUAL_SEND 1
|
|
|
|
#define CURL_TELQUAL_INFO 2
|
|
|
|
#define CURL_TELQUAL_NAME 3
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_TELCMD_OK(x) ( ((unsigned int)(x) >= CURL_TELCMD_MINIMUM) && \
|
|
|
|
((unsigned int)(x) <= CURL_TELCMD_MAXIMUM) )
|
|
|
|
#define CURL_TELCMD(x) telnetcmds[(x)-CURL_TELCMD_MINIMUM]
|
2010-02-14 14:40:18 -05:00
|
|
|
|
|
|
|
#endif /* CURL_DISABLE_TELNET */
|
|
|
|
|
|
|
|
#endif /* HEADER_CURL_ARPA_TELNET_H */
|