From: Anthony B. <ant...@us...> - 2002-04-23 10:51:47
|
Update of /cvsroot/pydns/pydns/DNS In directory usw-pr-cvs1:/tmp/cvs-serv31761 Modified Files: Opcode.py Log Message: Added UPDATE, NOTIFY. Index: Opcode.py =================================================================== RCS file: /cvsroot/pydns/pydns/DNS/Opcode.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Opcode.py 19 Mar 2002 12:41:33 -0000 1.5 --- Opcode.py 23 Apr 2002 10:51:43 -0000 1.6 *************** *** 7,11 **** This code is covered by the standard Python License. ! Opcode values in message header (section 4.1.1) """ --- 7,11 ---- This code is covered by the standard Python License. ! Opcode values in message header. RFC 1035, 1996, 2136. """ *************** *** 15,18 **** --- 15,20 ---- IQUERY = 1 STATUS = 2 + NOTIFY = 4 + UPDATE = 5 # Construct reverse mapping dictionary *************** *** 29,32 **** --- 31,37 ---- # # $Log$ + # Revision 1.6 2002/04/23 10:51:43 anthonybaxter + # Added UPDATE, NOTIFY. + # # Revision 1.5 2002/03/19 12:41:33 anthonybaxter # tabnannied and reindented everything. 4 space indent, no tabs. |