From: Anthony B. <ant...@us...> - 2002-04-23 13:08:06
|
Update of /cvsroot/pydns/pydns/DNS In directory usw-pr-cvs1:/tmp/cvs-serv6389 Modified Files: Status.py Class.py Log Message: cleanup whitespace. Index: Status.py =================================================================== RCS file: /cvsroot/pydns/pydns/DNS/Status.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Status.py 23 Apr 2002 10:57:57 -0000 1.6 --- Status.py 23 Apr 2002 12:52:19 -0000 1.7 *************** *** 22,31 **** NOTZONE = 10 # Name not contained in zone [RFC 2136] BADVERS = 16 # Bad OPT Version [RFC 2671] ! BADSIG = 16 # TSIG Signature Failure [RFC 2845] BADKEY = 17 # Key not recognized [RFC 2845] BADTIME = 18 # Signature out of time window [RFC 2845] BADMODE = 19 # Bad TKEY Mode [RFC 2930] BADNAME = 20 # Duplicate key name [RFC 2930] ! BADALG = 21 # Algorithm not supported [RFC 2930] # Construct reverse mapping dictionary --- 22,31 ---- NOTZONE = 10 # Name not contained in zone [RFC 2136] BADVERS = 16 # Bad OPT Version [RFC 2671] ! BADSIG = 16 # TSIG Signature Failure [RFC 2845] BADKEY = 17 # Key not recognized [RFC 2845] BADTIME = 18 # Signature out of time window [RFC 2845] BADMODE = 19 # Bad TKEY Mode [RFC 2930] BADNAME = 20 # Duplicate key name [RFC 2930] ! BADALG = 21 # Algorithm not supported [RFC 2930] # Construct reverse mapping dictionary *************** *** 42,45 **** --- 42,48 ---- # # $Log$ + # Revision 1.7 2002/04/23 12:52:19 anthonybaxter + # cleanup whitespace. + # # Revision 1.6 2002/04/23 10:57:57 anthonybaxter # update to complete the list of response codes. Index: Class.py =================================================================== RCS file: /cvsroot/pydns/pydns/DNS/Class.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Class.py 19 Mar 2002 12:41:33 -0000 1.5 --- Class.py 23 Apr 2002 12:52:19 -0000 1.6 *************** *** 14,18 **** CS = 2 # the CSNET class (Obsolete - used only for examples in # some obsolete RFCs) ! CH = 3 # the CHAOS class HS = 4 # Hesiod [Dyer 87] --- 14,19 ---- CS = 2 # the CSNET class (Obsolete - used only for examples in # some obsolete RFCs) ! CH = 3 # the CHAOS class. When someone shows me python running on ! # a Symbolics Lisp machine, I'll look at implementing this. HS = 4 # Hesiod [Dyer 87] *************** *** 35,38 **** --- 36,42 ---- # # $Log$ + # Revision 1.6 2002/04/23 12:52:19 anthonybaxter + # cleanup whitespace. + # # Revision 1.5 2002/03/19 12:41:33 anthonybaxter # tabnannied and reindented everything. 4 space indent, no tabs. |