Update of /cvsroot/seq/showeq/conf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14670/conf
Modified Files:
Tag: pre_5_0_beta
zoneopcodes.xml
Log Message:
Handle app opcodes less than 00 ff. Previously these were treated as protocol
opcodes, causing problems. It turns out when the opcode is 00 00, this seems
to be signalling 3 byte opcodes, which are app opcodes where you drop the
initial 00, and byte 2 and byte 3 form the app opcode to dispatch.
Handle this on OP_Packet, OP_Oversized, OP_AppCombined, and OP_Combined.
Probably don't need it on OP_Combined, but it shouldn't hurt anything.
Also fixed opcode for OP_DenyResponse (0x3c00).
Index: zoneopcodes.xml
===================================================================
RCS file: /cvsroot/seq/showeq/conf/Attic/zoneopcodes.xml,v
retrieving revision 1.1.4.20
retrieving revision 1.1.4.21
diff -u -d -r1.1.4.20 -r1.1.4.21
--- zoneopcodes.xml 16 May 2005 01:56:00 -0000 1.1.4.20
+++ zoneopcodes.xml 16 May 2005 23:04:15 -0000 1.1.4.21
@@ -632,7 +632,7 @@
<comment>old RandomCode</comment>
<payload dir="server" typename="randomStruct" sizechecktype="match"/>
</opcode>
- <opcode id="1700" name="OP_DenyResponse" updated="05/11/05">
+ <opcode id="3c00" name="OP_DenyResponse" updated="05/11/05">
<comment>Server replying with deny information after /deny</comment>
<payload dir="server" typename="consentResponseStruct" sizechecktype="match"/>
</opcode>
|