mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
4a5aa6682d
This reverts renaming and usage of lib/*.h header files done
28-12-2012, reverting 2 commits:
f871de0... build: make use of 76 lib/*.h renamed files
ffd8e12... build: rename 76 lib/*.h files
This also reverts removal of redundant include guard (redundant thanks
to changes in above commits) done 2-12-2013, reverting 1 commit:
c087374... curl_setup.h: remove redundant include guard
This also reverts renaming and usage of lib/*.c source files done
3-12-2013, reverting 3 commits:
13606bb... build: make use of 93 lib/*.c renamed files
5b6e792... build: rename 93 lib/*.c files
7d83dff... build: commit 13606bbfde
follow-up 1
Start of related discussion thread:
http://curl.haxx.se/mail/lib-2013-01/0012.html
Asking for confirmation on pushing this revertion commit:
http://curl.haxx.se/mail/lib-2013-01/0048.html
Confirmation summary:
http://curl.haxx.se/mail/lib-2013-01/0079.html
NOTICE: The list of 2 files that have been modified by other
intermixed commits, while renamed, and also by at least one
of the 6 commits this one reverts follows below. These 2 files
will exhibit a hole in history unless git's '--follow' option
is used when viewing logs.
lib/curl_imap.h
lib/curl_smtp.h
105 lines
3.9 KiB
C
105 lines
3.9 KiB
C
#ifndef HEADER_CURL_ARPA_TELNET_H
|
|
#define HEADER_CURL_ARPA_TELNET_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* 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.
|
|
*
|
|
* 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
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
#ifndef CURL_DISABLE_TELNET
|
|
/*
|
|
* Telnet option defines. Add more here if in need.
|
|
*/
|
|
#define CURL_TELOPT_BINARY 0 /* binary 8bit data */
|
|
#define CURL_TELOPT_ECHO 1 /* just echo! */
|
|
#define CURL_TELOPT_SGA 3 /* Suppress Go Ahead */
|
|
#define CURL_TELOPT_EXOPL 255 /* EXtended OPtions List */
|
|
#define CURL_TELOPT_TTYPE 24 /* Terminal TYPE */
|
|
#define CURL_TELOPT_NAWS 31 /* Negotiate About Window Size */
|
|
#define CURL_TELOPT_XDISPLOC 35 /* X DISPlay LOCation */
|
|
|
|
#define CURL_TELOPT_NEW_ENVIRON 39 /* NEW ENVIRONment variables */
|
|
#define CURL_NEW_ENV_VAR 0
|
|
#define CURL_NEW_ENV_VALUE 1
|
|
|
|
/*
|
|
* The telnet options represented as strings
|
|
*/
|
|
static const char * const telnetoptions[]=
|
|
{
|
|
"BINARY", "ECHO", "RCP", "SUPPRESS GO AHEAD",
|
|
"NAME", "STATUS", "TIMING MARK", "RCTE",
|
|
"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"
|
|
};
|
|
|
|
#define CURL_TELOPT_MAXIMUM CURL_TELOPT_NEW_ENVIRON
|
|
|
|
#define CURL_TELOPT_OK(x) ((x) <= CURL_TELOPT_MAXIMUM)
|
|
#define CURL_TELOPT(x) telnetoptions[x]
|
|
|
|
#define CURL_NTELOPTS 40
|
|
|
|
/*
|
|
* First some defines
|
|
*/
|
|
#define CURL_xEOF 236 /* End Of File */
|
|
#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 */
|
|
|
|
/*
|
|
* Then those numbers represented as strings:
|
|
*/
|
|
static const char * const telnetcmds[]=
|
|
{
|
|
"EOF", "SUSP", "ABORT", "EOR", "SE",
|
|
"NOP", "DMARK", "BRK", "IP", "AO",
|
|
"AYT", "EC", "EL", "GA", "SB",
|
|
"WILL", "WONT", "DO", "DONT", "IAC"
|
|
};
|
|
|
|
#define CURL_TELCMD_MINIMUM CURL_xEOF /* the first one */
|
|
#define CURL_TELCMD_MAXIMUM CURL_IAC /* surprise, 255 is the last one! ;-) */
|
|
|
|
#define CURL_TELQUAL_IS 0
|
|
#define CURL_TELQUAL_SEND 1
|
|
#define CURL_TELQUAL_INFO 2
|
|
#define CURL_TELQUAL_NAME 3
|
|
|
|
#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]
|
|
|
|
#endif /* CURL_DISABLE_TELNET */
|
|
|
|
#endif /* HEADER_CURL_ARPA_TELNET_H */
|