/* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)tftp.h 8.1 (Berkeley) 6/2/93 */ #ifndef _ARPA_TFTP_H #define _ARPA_TFTP_H 1 /* * Trivial File Transfer Protocol (IEN-133) */ #define SEGSIZE 512 /* data segment size */ /* * Packet types. */ #define RRQ 01 /* read request */ #define WRQ 02 /* write request */ #define DATA 03 /* data packet */ #define ACK 04 /* acknowledgement */ #define ERROR 05 /* error code */ struct tftphdr { short th_opcode; /* packet type */ union { unsigned short tu_block; /* block # */ short tu_code; /* error code */ char tu_stuff[1]; /* request packet stuff */ } __attribute__ ((__packed__)) th_u; char th_data[1]; /* data or error string */ } __attribute__ ((__packed__)); #define th_block th_u.tu_block #define th_code th_u.tu_code #define th_stuff th_u.tu_stuff #define th_msg th_data /* * Error codes. */ #define EUNDEF 0 /* not defined */ #define ENOTFOUND 1 /* file not found */ #define EACCESS 2 /* access violation */ #define ENOSPACE 3 /* disk full or allocation exceeded */ #define EBADOP 4 /* illegal TFTP operation */ #define EBADID 5 /* unknown transfer ID */ #define EEXISTS 6 /* file already exists */ #define ENOUSER 7 /* no such user */ #endif /* arpa/tftp.h */ /* * Copyright (c) 1983, 1989, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)ftp.h 8.1 (Berkeley) 6/2/93 */ #ifndef _ARPA_FTP_H #define _ARPA_FTP_H 1 /* Definitions for FTP; see RFC-765. */ /* * Reply codes. */ #define PRELIM 1 /* positive preliminary */ #define COMPLETE 2 /* positive completion */ #define CONTINUE 3 /* positive intermediate */ #define TRANSIENT 4 /* transient negative completion */ #define ERROR 5 /* permanent negative completion */ /* * Type codes */ #define TYPE_A 1 /* ASCII */ #define TYPE_E 2 /* EBCDIC */ #define TYPE_I 3 /* image */ #define TYPE_L 4 /* local byte size */ #ifdef FTP_NAMES char *typenames[] = {"0", "ASCII", "EBCDIC", "Image", "Local" }; #endif /* * Form codes */ #define FORM_N 1 /* non-print */ #define FORM_T 2 /* telnet format effectors */ #define FORM_C 3 /* carriage control (ASA) */ #ifdef FTP_NAMES char *formnames[] = {"0", "Nonprint", "Telnet", "Carriage-control" }; #endif /* * Structure codes */ #define STRU_F 1 /* file (no record structure) */ #define STRU_R 2 /* record structure */ #define STRU_P 3 /* page structure */ #ifdef FTP_NAMES char *strunames[] = {"0", "File", "Record", "Page" }; #endif /* * Mode types */ #define MODE_S 1 /* stream */ #define MODE_B 2 /* block */ #define MODE_C 3 /* compressed */ #ifdef FTP_NAMES char *modenames[] = {"0", "Stream", "Block", "Compressed" }; #endif /* * Record Tokens */ #define REC_ESC '\377' /* Record-mode Escape */ #define REC_EOR '\001' /* Record-mode End-of-Record */ #define REC_EOF '\002' /* Record-mode End-of-File */ /* * Block Header */ #define BLK_EOR 0x80 /* Block is End-of-Record */ #define BLK_EOF 0x40 /* Block is End-of-File */ #define BLK_ERRORS 0x20 /* Block is suspected of containing errors */ #define BLK_RESTART 0x10 /* Block is Restart Marker */ #define BLK_BYTECOUNT 2 /* Bytes in this block */ #endif /* arpa/ftp.h */ /* Copyright (c) 1983, 1989 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* * from nameser.h 8.1 (Berkeley) 6/2/93 * $BINDId: nameser_compat.h,v 8.11 1999/01/02 08:00:58 vixie Exp $ */ #ifndef _ARPA_NAMESER_COMPAT_ #define _ARPA_NAMESER_COMPAT_ #define __BIND 19950621 /* (DEAD) interface version stamp. */ #include /* * Structure for query header. The order of the fields is machine- and * compiler-dependent, depending on the byte/bit order and the layout * of bit fields. We use bit fields only in int variables, as this * is all ANSI requires. This requires a somewhat confusing rearrangement. */ typedef struct { unsigned id :16; /* query identification number */ #if __BYTE_ORDER == __BIG_ENDIAN /* fields in third byte */ unsigned qr: 1; /* response flag */ unsigned opcode: 4; /* purpose of message */ unsigned aa: 1; /* authoritive answer */ unsigned tc: 1; /* truncated message */ unsigned rd: 1; /* recursion desired */ /* fields in fourth byte */ unsigned ra: 1; /* recursion available */ unsigned unused :1; /* unused bits (MBZ as of 4.9.3a3) */ unsigned ad: 1; /* authentic data from named */ unsigned cd: 1; /* checking disabled by resolver */ unsigned rcode :4; /* response code */ #endif #if __BYTE_ORDER == __LITTLE_ENDIAN || __BYTE_ORDER == __PDP_ENDIAN /* fields in third byte */ unsigned rd :1; /* recursion desired */ unsigned tc :1; /* truncated message */ unsigned aa :1; /* authoritive answer */ unsigned opcode :4; /* purpose of message */ unsigned qr :1; /* response flag */ /* fields in fourth byte */ unsigned rcode :4; /* response code */ unsigned cd: 1; /* checking disabled by resolver */ unsigned ad: 1; /* authentic data from named */ unsigned unused :1; /* unused bits (MBZ as of 4.9.3a3) */ unsigned ra :1; /* recursion available */ #endif /* remaining bytes */ unsigned qdcount :16; /* number of question entries */ unsigned ancount :16; /* number of answer entries */ unsigned nscount :16; /* number of authority entries */ unsigned arcount :16; /* number of resource entries */ } HEADER; #define PACKETSZ NS_PACKETSZ #define MAXDNAME NS_MAXDNAME #define MAXCDNAME NS_MAXCDNAME #define MAXLABEL NS_MAXLABEL #define HFIXEDSZ NS_HFIXEDSZ #define QFIXEDSZ NS_QFIXEDSZ #define RRFIXEDSZ NS_RRFIXEDSZ #define INT32SZ NS_INT32SZ #define INT16SZ NS_INT16SZ #define INADDRSZ NS_INADDRSZ #define IN6ADDRSZ NS_IN6ADDRSZ #define INDIR_MASK NS_CMPRSFLGS #define NAMESERVER_PORT NS_DEFAULTPORT #define S_ZONE ns_s_zn #define S_PREREQ ns_s_pr #define S_UPDATE ns_s_ud #define S_ADDT ns_s_ar #define QUERY ns_o_query #define IQUERY ns_o_iquery #define STATUS ns_o_status #define NS_NOTIFY_OP ns_o_notify #define NS_UPDATE_OP ns_o_update #define NOERROR ns_r_noerror #define FORMERR ns_r_formerr #define SERVFAIL ns_r_servfail #define NXDOMAIN ns_r_nxdomain #define NOTIMP ns_r_notimpl #define REFUSED ns_r_refused #define YXDOMAIN ns_r_yxdomain #define YXRRSET ns_r_yxrrset #define NXRRSET ns_r_nxrrset #define NOTAUTH ns_r_notauth #define NOTZONE ns_r_notzone /*#define BADSIG ns_r_badsig*/ /*#define BADKEY ns_r_badkey*/ /*#define BADTIME ns_r_badtime*/ #define DELETE ns_uop_delete #define ADD ns_uop_add #define T_A ns_t_a #define T_NS ns_t_ns #define T_MD ns_t_md #define T_MF ns_t_mf #define T_CNAME ns_t_cname #define T_SOA ns_t_soa #define T_MB ns_t_mb #define T_MG ns_t_mg #define T_MR ns_t_mr #define T_NULL ns_t_null #define T_WKS ns_t_wks #define T_PTR ns_t_ptr #define T_HINFO ns_t_hinfo #define T_MINFO ns_t_minfo #define T_MX ns_t_mx #define T_TXT ns_t_txt #define T_RP ns_t_rp #define T_AFSDB ns_t_afsdb #define T_X25 ns_t_x25 #define T_ISDN ns_t_isdn #define T_RT ns_t_rt #define T_NSAP ns_t_nsap #define T_NSAP_PTR ns_t_nsap_ptr #define T_SIG ns_t_sig #define T_KEY ns_t_key #define T_PX ns_t_px #define T_GPOS ns_t_gpos #define T_AAAA ns_t_aaaa #define T_LOC ns_t_loc #define T_NXT ns_t_nxt #define T_EID ns_t_eid #define T_NIMLOC ns_t_nimloc #define T_SRV ns_t_srv #define T_ATMA ns_t_atma #define T_NAPTR ns_t_naptr #define T_TSIG ns_t_tsig #define T_IXFR ns_t_ixfr #define T_AXFR ns_t_axfr #define T_MAILB ns_t_mailb #define T_MAILA ns_t_maila #define T_ANY ns_t_any #define C_IN ns_c_in #define C_CHAOS ns_c_chaos #define C_HS ns_c_hs /* BIND_UPDATE */ #define C_NONE ns_c_none #define C_ANY ns_c_any #define GETSHORT NS_GET16 #define GETLONG NS_GET32 #define PUTSHORT NS_PUT16 #define PUTLONG NS_PUT32 #endif /* _ARPA_NAMESER_COMPAT_ */ /* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)telnet.h 8.2 (Berkeley) 12/15/93 */ #ifndef _ARPA_TELNET_H #define _ARPA_TELNET_H 1 /* * Definitions for the TELNET protocol. */ #define IAC 255 /* interpret as command: */ #define DONT 254 /* you are not to use option */ #define DO 253 /* please, you use option */ #define WONT 252 /* I won't use option */ #define WILL 251 /* I will use option */ #define SB 250 /* interpret as subnegotiation */ #define GA 249 /* you may reverse the line */ #define EL 248 /* erase the current line */ #define EC 247 /* erase the current character */ #define AYT 246 /* are you there */ #define AO 245 /* abort output--but let prog finish */ #define IP 244 /* interrupt process--permanently */ #define BREAK 243 /* break */ #define DM 242 /* data mark--for connect. cleaning */ #define NOP 241 /* nop */ #define SE 240 /* end sub negotiation */ #define EOR 239 /* end of record (transparent mode) */ #define ABORT 238 /* Abort process */ #define SUSP 237 /* Suspend process */ #define xEOF 236 /* End of file: EOF is already used... */ #define SYNCH 242 /* for telfunc calls */ #ifdef TELCMDS char *telcmds[] = { "EOF", "SUSP", "ABORT", "EOR", "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC", "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0, }; #else extern char *telcmds[]; #endif #define TELCMD_FIRST xEOF #define TELCMD_LAST IAC #define TELCMD_OK(x) ((unsigned int)(x) <= TELCMD_LAST && \ (unsigned int)(x) >= TELCMD_FIRST) #define TELCMD(x) telcmds[(x)-TELCMD_FIRST] /* telnet options */ #define TELOPT_BINARY 0 /* 8-bit data path */ #define TELOPT_ECHO 1 /* echo */ #define TELOPT_RCP 2 /* prepare to reconnect */ #define TELOPT_SGA 3 /* suppress go ahead */ #define TELOPT_NAMS 4 /* approximate message size */ #define TELOPT_STATUS 5 /* give status */ #define TELOPT_TM 6 /* timing mark */ #define TELOPT_RCTE 7 /* remote controlled transmission and echo */ #define TELOPT_NAOL 8 /* negotiate about output line width */ #define TELOPT_NAOP 9 /* negotiate about output page size */ #define TELOPT_NAOCRD 10 /* negotiate about CR disposition */ #define TELOPT_NAOHTS 11 /* negotiate about horizontal tabstops */ #define TELOPT_NAOHTD 12 /* negotiate about horizontal tab disposition */ #define TELOPT_NAOFFD 13 /* negotiate about formfeed disposition */ #define TELOPT_NAOVTS 14 /* negotiate about vertical tab stops */ #define TELOPT_NAOVTD 15 /* negotiate about vertical tab disposition */ #define TELOPT_NAOLFD 16 /* negotiate about output LF disposition */ #define TELOPT_XASCII 17 /* extended ascii character set */ #define TELOPT_LOGOUT 18 /* force logout */ #define TELOPT_BM 19 /* byte macro */ #define TELOPT_DET 20 /* data entry terminal */ #define TELOPT_SUPDUP 21 /* supdup protocol */ #define TELOPT_SUPDUPOUTPUT 22 /* supdup output */ #define TELOPT_SNDLOC 23 /* send location */ #define TELOPT_TTYPE 24 /* terminal type */ #define TELOPT_EOR 25 /* end or record */ #define TELOPT_TUID 26 /* TACACS user identification */ #define TELOPT_OUTMRK 27 /* output marking */ #define TELOPT_TTYLOC 28 /* terminal location number */ #define TELOPT_3270REGIME 29 /* 3270 regime */ #define TELOPT_X3PAD 30 /* X.3 PAD */ #define TELOPT_NAWS 31 /* window size */ #define TELOPT_TSPEED 32 /* terminal speed */ #define TELOPT_LFLOW 33 /* remote flow control */ #define TELOPT_LINEMODE 34 /* Linemode option */ #define TELOPT_XDISPLOC 35 /* X Display Location */ #define TELOPT_OLD_ENVIRON 36 /* Old - Environment variables */ #define TELOPT_AUTHENTICATION 37/* Authenticate */ #define TELOPT_ENCRYPT 38 /* Encryption option */ #define TELOPT_NEW_ENVIRON 39 /* New - Environment variables */ #define TELOPT_EXOPL 255 /* extended-options-list */ #define NTELOPTS (1+TELOPT_NEW_ENVIRON) #ifdef TELOPTS char *telopts[NTELOPTS+1] = { "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", "DATA ENTRY TERMINAL", "SUPDUP", "SUPDUP OUTPUT", "SEND LOCATION", "TERMINAL TYPE", "END OF RECORD", "TACACS UID", "OUTPUT MARKING", "TTYLOC", "3270 REGIME", "X.3 PAD", "NAWS", "TSPEED", "LFLOW", "LINEMODE", "XDISPLOC", "OLD-ENVIRON", "AUTHENTICATION", "ENCRYPT", "NEW-ENVIRON", 0, }; #define TELOPT_FIRST TELOPT_BINARY #define TELOPT_LAST TELOPT_NEW_ENVIRON #define TELOPT_OK(x) ((unsigned int)(x) <= TELOPT_LAST) #define TELOPT(x) telopts[(x)-TELOPT_FIRST] #endif /* sub-option qualifiers */ #define TELQUAL_IS 0 /* option is... */ #define TELQUAL_SEND 1 /* send option */ #define TELQUAL_INFO 2 /* ENVIRON: informational version of IS */ #define TELQUAL_REPLY 2 /* AUTHENTICATION: client version of IS */ #define TELQUAL_NAME 3 /* AUTHENTICATION: client version of IS */ #define LFLOW_OFF 0 /* Disable remote flow control */ #define LFLOW_ON 1 /* Enable remote flow control */ #define LFLOW_RESTART_ANY 2 /* Restart output on any char */ #define LFLOW_RESTART_XON 3 /* Restart output only on XON */ /* * LINEMODE suboptions */ #define LM_MODE 1 #define LM_FORWARDMASK 2 #define LM_SLC 3 #define MODE_EDIT 0x01 #define MODE_TRAPSIG 0x02 #define MODE_ACK 0x04 #define MODE_SOFT_TAB 0x08 #define MODE_LIT_ECHO 0x10 #define MODE_MASK 0x1f /* Not part of protocol, but needed to simplify things... */ #define MODE_FLOW 0x0100 #define MODE_ECHO 0x0200 #define MODE_INBIN 0x0400 #define MODE_OUTBIN 0x0800 #define MODE_FORCE 0x1000 #define SLC_SYNCH 1 #define SLC_BRK 2 #define SLC_IP 3 #define SLC_AO 4 #define SLC_AYT 5 #define SLC_EOR 6 #define SLC_ABORT 7 #define SLC_EOF 8 #define SLC_SUSP 9 #define SLC_EC 10 #define SLC_EL 11 #define SLC_EW 12 #define SLC_RP 13 #define SLC_LNEXT 14 #define SLC_XON 15 #define SLC_XOFF 16 #define SLC_FORW1 17 #define SLC_FORW2 18 #define NSLC 18 /* * For backwards compatibility, we define SLC_NAMES to be the * list of names if SLC_NAMES is not defined. */ #define SLC_NAMELIST "0", "SYNCH", "BRK", "IP", "AO", "AYT", "EOR", \ "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \ "LNEXT", "XON", "XOFF", "FORW1", "FORW2", 0, #ifdef SLC_NAMES char *slc_names[] = { SLC_NAMELIST }; #else extern char *slc_names[]; #define SLC_NAMES SLC_NAMELIST #endif #define SLC_NAME_OK(x) ((unsigned int)(x) <= NSLC) #define SLC_NAME(x) slc_names[x] #define SLC_NOSUPPORT 0 #define SLC_CANTCHANGE 1 #define SLC_VARIABLE 2 #define SLC_DEFAULT 3 #define SLC_LEVELBITS 0x03 #define SLC_FUNC 0 #define SLC_FLAGS 1 #define SLC_VALUE 2 #define SLC_ACK 0x80 #define SLC_FLUSHIN 0x40 #define SLC_FLUSHOUT 0x20 #define OLD_ENV_VAR 1 #define OLD_ENV_VALUE 0 #define NEW_ENV_VAR 0 #define NEW_ENV_VALUE 1 #define ENV_ESC 2 #define ENV_USERVAR 3 /* * AUTHENTICATION suboptions */ /* * Who is authenticating who ... */ #define AUTH_WHO_CLIENT 0 /* Client authenticating server */ #define AUTH_WHO_SERVER 1 /* Server authenticating client */ #define AUTH_WHO_MASK 1 /* * amount of authentication done */ #define AUTH_HOW_ONE_WAY 0 #define AUTH_HOW_MUTUAL 2 #define AUTH_HOW_MASK 2 #define AUTHTYPE_NULL 0 #define AUTHTYPE_KERBEROS_V4 1 #define AUTHTYPE_KERBEROS_V5 2 #define AUTHTYPE_SPX 3 #define AUTHTYPE_MINK 4 #define AUTHTYPE_CNT 5 #define AUTHTYPE_TEST 99 #ifdef AUTH_NAMES char *authtype_names[] = { "NULL", "KERBEROS_V4", "KERBEROS_V5", "SPX", "MINK", 0, }; #else extern char *authtype_names[]; #endif #define AUTHTYPE_NAME_OK(x) ((unsigned int)(x) < AUTHTYPE_CNT) #define AUTHTYPE_NAME(x) authtype_names[x] /* * ENCRYPTion suboptions */ #define ENCRYPT_IS 0 /* I pick encryption type ... */ #define ENCRYPT_SUPPORT 1 /* I support encryption types ... */ #define ENCRYPT_REPLY 2 /* Initial setup response */ #define ENCRYPT_START 3 /* Am starting to send encrypted */ #define ENCRYPT_END 4 /* Am ending encrypted */ #define ENCRYPT_REQSTART 5 /* Request you start encrypting */ #define ENCRYPT_REQEND 6 /* Request you send encrypting */ #define ENCRYPT_ENC_KEYID 7 #define ENCRYPT_DEC_KEYID 8 #define ENCRYPT_CNT 9 #define ENCTYPE_ANY 0 #define ENCTYPE_DES_CFB64 1 #define ENCTYPE_DES_OFB64 2 #define ENCTYPE_CNT 3 #ifdef ENCRYPT_NAMES char *encrypt_names[] = { "IS", "SUPPORT", "REPLY", "START", "END", "REQUEST-START", "REQUEST-END", "ENC-KEYID", "DEC-KEYID", 0, }; char *enctype_names[] = { "ANY", "DES_CFB64", "DES_OFB64", 0, }; #else extern char *encrypt_names[]; extern char *enctype_names[]; #endif #define ENCRYPT_NAME_OK(x) ((unsigned int)(x) < ENCRYPT_CNT) #define ENCRYPT_NAME(x) encrypt_names[x] #define ENCTYPE_NAME_OK(x) ((unsigned int)(x) < ENCTYPE_CNT) #define ENCTYPE_NAME(x) enctype_names[x] #endif /* arpa/telnet.h */ Gm Gmselinuxunconfined_u:object_r:file_t:s0ELF 4P4 (444@@@@@TTTTPtdȕȕQtd/lib/ld-uClibc.so.0C]UPR18VH(A#Z;B0!MW*I>D/+?F)Q=\J$3S%CTG6L[X:,   .-4"'<297&E ONK @5Y?" p,2!8=LSY_ " ekryg: ]#0" l0C "(5;fKHRZkpe 0libgcc_s.so.1mallocabortcalloc__register_frame_info_bases__deregister_frame_info_basesrealloc_Jv_RegisterClasseslibc.so.0strcpywaitpidstdout__fsetlockingstrerrormemmovegetenvgetpidfscanfdup2removesleep_obstack_newchunkputenv__fgetc_unlockedpiperenamestrrchr_obstack_beginwait4writekillfputs_unlockedstrcatchdirfseekstdinlstatferrorstrstrstrncmpstrncpyunlinkmemcmpfdopensscanfexecvstrncatfread__uClibc_mainsbrkstrdupgettimeofdayfopenftellfclosestrcmpgetcwdstrsignalsprintfstrcspnstderrvforkobstack_freefputcfflush_unlockedaccessfreopen__errno_locationatoifgets_unlocked_exitstrspnstrchrfputsexecvpfcntlvfprintfstrpbrkraise__fputc_unlocked__environ_edata__bss_start_endGCC_3.0P&y "@048<@DHL P T X \ `dhlptx| !$%&')*+ħ,ȧ-̧.Ч/ԧ0ا1ܧ2345689:;<=> ?BCDE F$G(J,K0L4M8N<O@PDQHRLSPTTVXW\X`YdZh[l\USG'/[]5(%,%0h%4h%8h%<h%@h %Dh(%Hh0%Lh8p%Ph@`%ThHP%XhP@%\hX0%`h` %dhh%hhp%lhx%ph%th%xh%|h%h%h%h%hp%h`%hP%h@%h0%h %h%h%h%h%h%h%h%h %ħh(%ȧh0%̧h8p%Чh@`%ԧhHP%اhP@%ܧhX0%h` %hh%hp%hx%h%h%h%h%h%h%h% hp%h`%hP%h@%h0% h %$h%(h%,h%0h%4h%8h%<h%@h %Dh(%Hh0%Lh8p%Ph@`%ThHP%XhP@%\hX0%`h` %dhh%hhp%lhx1^PTRh\jhQVh$US=uHL-HX @H9rt hZ]UZt0tRjhh^=Ptt hPЃÐUWVS E8E1EtRG}uu tB\tހ'u ֡@9ĹsRRjh@먡@9ĹsPPjhT@E89u ܹ̹!‰ Ĺ)‰)9~ ؍e[^_]UWVS(ÉU1уQ/E=tj:Shtj5c]܉@EEEU܊<:tu])WSVu9uuVVhju}܀/tE/DU=tSuhj5}t ЋRup}1эAU;B~B jEYuhC}܀?tu! ue[^_]UWVSƉU1j QXZuGP>tF8>PPCPuu9tF WHШ@ШC^Fe[^_]UjuUWVS|EUp1эY=tQRhj5o D3P EƃE8/ueRRjPu4PPuu=PP5hj=tmPP5hjV}KPP3VYY_uVXZEPVx E%=@tWWjVt@[u=t}?uQQ5hka VEEe[^_]UWVS ƋD;1@|_t DPufCt;B~ыuШPBu Шe[^_]UWVS$E EhuEu%,PPjh@ uƃ%,u$t .@9Ĺs@9ĹsWWjhbP=9u ܹ̹!‰ Ĺ)‰)9~ ?.uGSSuj.+=QQj W@DERRuP1ʃ}) KPPuj  ~uyEtA C uƃy t%,@uPPuj } u_ PPuWXu;v;Ĺs WWPhtSSuV]]e[^_]+;AÍe[^_]US ] 5h=kF Su5tXZ5j U]U E Pu5EUWVS ƃ== PPVhHk CPshckhtkV u݅I CPshkhtkV uSSVhk`shkhkVUuQQVhk/XZVhk"Y[VhkXZVhkY[VhlXZVhlY[Vh*lXZVhBlY[VhnXZVhZlY[VhlXZVhlY[VhlXZVhmY[Vh7myXZVh;mlY[VhYm_XZVh7mRPPVhmB PhmV;shnhkV utPPVhmPPVhm  CPshckhtkV uPPVhm PhmV shnhkVutWWVhm_SSVhmO hmhnVL hmhn1= EEQQj/Pt@EEERRj.PÅu1}ыUD !Pjh:nSuCCu+] CPYǃ SuP@,u_Bu=tPW5h>n6PjWhon^ jWh|nI<$Y[VhnXZVhn CPshckhtkV u݃}I CPshkhtkV uPPVhkshkhkVuWWVhkeY[VhkXXZVhkK_XVhk>Y[Vhl1XZVhl$_XVh*lY[VhBl XZVhn_XVhZlY[VhlXZVhl_XVhlY[VhmXZVh7m_XVh;mY[VhYmXZVh7mP5hnV}= PPVhnMshnhkVButPPVhmPPVhnY[VhnXZVhn EPhoV[XVh(oQQVhFoXZVh8m  CPshckhtkV uP5hnV= PPVhQoM shnhkVButPPVhmWWVhnY[VhnXZVhpo_XVho EuhoVSSVh8m=t)Q5hoV 5hoVe[^_]U=u P蝾 RRPho5US]t 8tt 8tt 8tt 8t~(tpQQjS]]0US]t 8t:t 8t't 8tQQ5Pt 8tRR5Ptt 8t(t SUS ] 5h=k Su54[X5j $ Uu uuhpUVS60] PP5h=k Su54$蝾 Phj5$UWVS} =$7 hn觭(ZYhrP薠ÃuPP5(h+p PPSGPMtPP5(hKp S@uPP5(hopWj5(hpўEuEE}E=u =t]tVV5PpSSuhpB_QPhp5UuRR5j Z 5YX5M?uPPuhp Pjhpjƃu hp1PEPuuW7jVà t ut)0 S P}t ue[^_]UVS] EPjSu hp SNUtLЃ@~8փpxn V$PVuhpj%ƀt1e[^]UVSPPRV]ÃtPSVhq^$(t Pd(e[^]USjjRP‰؋]UWVSLEu h3qEEDqEE]=u0RPhp5uPP5j  5X5 jhpjָu hpWEPjjEP5jӳà tut 0 SO P5VVjjY[jjXZjĭu hGqJ=~PP5h\qd u{Uu { RCF t_uՉك_1At,@u|uG_t9tu)؉C9u3~ t ~$PQRW茻uFH$DuNtj&t_?tPPhqڸ4tPPhqgڸ t ڸU=tWPhq5VhPt =tSS5j mFQQjXZje[^_]ÍL$qUWVSQ`MpuEduU `uM\u]XuEċUZЃPRM9Yt$]; hqi$qX$Y^jj6XZPjöEY^ Pj豶EXZ3j裶E!VVhqPu UBuҡq hhJejjh 9 ĹyQQjh59u ܹ̹!‰ Ĺ)‰)9~ _ 5 hr Eu8-u @-u5~Bu/ V~uS PʱEt 85;v;Ĺs RRPhuMMjrC|rCrC rCr]܋]]EE؉NM̉ǃ;-CuPPjjÉ<$Ee[^_]UWVSljP61҅RPW5Tdƃ 1t#>uPPjj腧É<$e[^_]UVS,@9ĹsPPjh@ V2Ãt u1;tn@9ĹsPPjhP9u ܹ̹!‰ Ĺ)‰)9~ ډЍe[^]U" PUWVS ׉M>Ë@$+ PPjh P59u <,!‰  $M))9~E  F5+}t.St9tJu{CE{MKe[^_]UWVS$h0xƃ=DQ3hu5EA<wG$wC1C%C  1ɉډ;v;Ĺs RRPhy}PWh vVDHb V{u hrC{uCye[^_]UWVS$hP_EE}tQQh vSZGߊu Ef,@uFEt ,@t1.1҉À}EuP}tDFERRhvPt*PPj uHx.uH1҉iÅu}u E%FPPh%vVuEEEESSj`VtXQQj'SRRj"VÅtCPPj"SzPPjVi9ttC1;.Å}uTPPh6vVu@PPh?vVu,PPhIvVuPPhTvV1҉t@11҉.Åtc{t%WC03h\v\^uc1{ u2=D~C03hv5C C;v;Ĺs SSPhcEHÅQ u1=e[^_]ÉrUWVSXhvڡ$Z$vơ$Fǃ P7tE WـjPW5P ƃ 8uSSjj4É<$薛EUu=t &1= =D~LQQ55XZ55!PPj3tPt<B;v;$s WWRhuutatX=DtQQ5h|w55uhu_ZPhuEt FSS55Y5XZ55hX5}tPPuhwXu*e[^_]ÐUE]UVSË1,u$k ҍLЍF3,uy[^]USË_u&AA,t'‹8_u@B< w PЍA[]UEd}9u Ju1]UWVSljU 1,tLpЋE0KC,t)k tA,u_u AE0Z[^_]USËt PCC]UVS&X^ Ft PFF Ӎe[^]UVSCt PCC$1{@u1C@t PeF;sD| s@QC@CLt sL0CLe[^]UVS&X^Ft PFF#Z^t PF VҋF Ӆt PFt Pe[^]UWVS lj֋u V贖G%H@)9}!)QQVR_Ge[^_]UWVSEU˅tExuX[^_]UWVS E֋F9t)ӉڋEEEx6X [^_]UWVSEU˅t1UBP Ju>I9suEX[^_]USËJ9t )‰[][]UWSÅt:t1I_[_]l[[_]UWVS Eօt*:t%1KڋEfExX [^_]UVS4Rh)xuVHe[^]UVSÉ֋-uX-Xk+u@1,u*XX:,uۺ[^]USËP9P|5u@ jeCPPPs ˓C CPSS ]UWVSÉUMP9P|5u@ jCPPPseC E@PғENjuMUCSM @Ce[^_]UWVSE։ˍAP芓EljEP EM e[^_]UWVSÉUMxHuqP$9P |5u@$ j /C$PPPs蕒C E@PENjuMUC SM @C e[^_]UWVSo*~p PPFPhƽ ~PjhqxFP蕻tE}EVU|E}E N M}؋1I9u>PSuR>u,EpyxkE }E{E܃E }OuMԋ1I9u+WSuRٺuEpyx-kE EE }Ou~]QjhxV蔺uHRRFPh茼t0FE]UًERUBxEN>_7~_-VouN~puHFE]UًEMAx]ڋE~Q,F,~uAE}1ۍ~}E̋1uPjuR腹tLCE Oumauh~ubE}1ۍVUMЋ1u6PjuR9u#Epyxk }E| CE OuMA9t)Hu 1:.e[^_]UWVS|EUMEU1My)}Ɓ<uPPh&yREu uMUEƃEEE]UE|ljUE6}t uMUEstMUE(ƅuZUEMAUwECt <_u{_uC;_t]]Exy1]xEe[^_]UWVS<ƉЉUV(UЋ~,}ԋV0U؋~8}F,F(F8F<8EEEtMU.ÅEE1}эYRjhxu3tPjhxuuEEF< PjhxuuoPPUBPhp}:G G ~0t$}, t9]u[MEP,uQttt KtHu+ttME(u YE} t:}t4EzËE@19t)у SEBEEe[^_]ÉًUEI1}UWVSLEĉUMEЃ}tEE@(u UċR,UEEEEEEM;Ksu71ƒ};GGEEVC<1<9~<_E0E@u/EE EP跧EȀ{_uU2MEE؉E܋}8_u@Utu*SjjMQMUE#ẼMKuA@}ƒ)E;P@E}}ċ Elà @PwEE0}EZYU2PƃtEM Viً}E' uJE(EM؋UE%E̅tUU؍EUE19t)ыEMtyMuxE}sEUE19t)у uЋEW}t]BMĉBu y؃[^_]UWVS É։ϋEGGCP~HCPSLp8nu"@CP~_ ~8_uS@럋CLt% j dCLKL"t SL+MU1e[^_]UWVS,É׉tNJ8u ^yE8Nt T@tUu uE8t{ ~ QEU:<tME$;C |[CUE}tt DyM܍UCt U܉EE{PEHEyI}tt DyM܉t U܉EiE_t t e{Peu&@t}t yyt|1,[^_]UWVS @HxL@PECLCPƋCLt sLˑ{LKHECPe[^_]UWVS\Ɖ׉MEEEEE!yux]ЉڋEi.E@<tME!8_@M܉{EEUEEEEEE}uUUPjjEPM܉Et+MUyuxEU܋EzF,tGyEUEN,F(uF,tUEN(EEtQ}tKE@]ЉىsEE;Et <]ЉڋE-EE@B,uut*SjjjMEF(uECt!MEE#EEEE}}t,,tMwEEE}tU}tj}utM1E}tGtB~0t yE~8t)U;Bt EF8b‹EEe[^_]UWVSE։MNJE~1һ1}IME}1ۋE؋1IME9wNPQuRLju<Ek }EEMCE Ou04 uMEút>}1I9~E PPhRÉًE%PPhS"}t$9y}uxE$PPWhyoePPhS跈EJECPPjjME2PjjjMEE} ÅU1I9 ~jWjhxR[uUEx NuLŠ@:B uBQQPh萇t+yERRhPɇEًUE};>a@yEuxE{1эYًEX(WjhySMZu~C ÃBE8DžQShy]S誅ڋEE<$1э| >ERjhzSYuyC6zWWhyxu oY^k }u \XZh{u MC Ou1I;du6Wd`R詀uVVhyxu ZYk }C Ou}~PjhxubuhPPUBPhWtMEE]UEt0PPhxu tU E)PRu ?h1ۍEZ؍e[^_]ÐUEU MtttPH1]UEU Mtxt*PH1]UUMtu1E BJ]UUMtu1E BJ]UWVSÉ׋uB4w5$u(t C;C}k S@Ct :Jr1҉[^_]UWVSƋP 1nuBF J1ۍA< v tۉ[^_]k \ЋV BF JUSÅu@ t>@C htvu-C 8_u@C rC 8_u @C 1[]UWVSÉ։QC t ҃t҃C0 ҃C0j1ɉZu1pC _uk~_ue