[Python-checkins] python/dist/src/Doc/lib libtelnetlib.tex,1.10,1.11

loewis@users.sourceforge.net loewis@users.sourceforge.net
Mon, 04 Nov 2002 09:41:20 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv22767

Modified Files:
	libtelnetlib.tex 
Log Message:
Document symbolic constants for commands.


Index: libtelnetlib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtelnetlib.tex,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** libtelnetlib.tex	4 Nov 2002 09:55:59 -0000	1.10
--- libtelnetlib.tex	4 Nov 2002 17:41:18 -0000	1.11
***************
*** 11,19 ****
  implements the Telnet protocol.  See \rfc{854} for details about the
  protocol. In addition, it provides symbolic constants for the protocol
! characters (IAC/DONT/DO/WONT/WILL), and for the telnet options. The
  symbolic names of the telnet options follow the definitions in
  \code{arpa/telnet.h}, with the leading \code{TELOPT_} removed. For
  symbolic names of options which are traditionally not included in
  \code{arpa/telnet.h}, see the module source itself.
  
  
--- 11,25 ----
  implements the Telnet protocol.  See \rfc{854} for details about the
  protocol. In addition, it provides symbolic constants for the protocol
! characters (see below), and for the telnet options. The
  symbolic names of the telnet options follow the definitions in
  \code{arpa/telnet.h}, with the leading \code{TELOPT_} removed. For
  symbolic names of options which are traditionally not included in
  \code{arpa/telnet.h}, see the module source itself.
+ 
+ The symbolic constants for the telnet commands are: IAC, DONT, DO,
+ WONT, WILL, SE (Subnegotiation End), NOP (No Operation), DM (Data
+ Mark), BRK (Break), IP (Interrupt process), AO (Abort output), AYT
+ (Are You There), EC (Erase Character), EL (Erase Line), GA (Go Ahead),
+ SB (Subnegotiation Begin).