Make sure Message request id ivar matches value put into buffer.

This commit is contained in:
Jim Menard 2009-01-04 10:02:32 -05:00
parent b4f11caff8
commit eaacc62086
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ module XGen
@buf = ByteBuffer.new
@buf.put_int(16) # holder for length
@buf.put_int(@@class_req_id += 1)
@buf.put_int(@request_id)
@buf.put_int(0) # response_to
@buf.put_int(op)
end