2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 05:27:55 +00:00

be lenient on the receiving end whether env["msg"] is a str or a bytearray (until we use the new wireformat i guess)

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/parkinglot@327 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
Jelte Jansen 2009-12-01 16:23:52 +00:00
parent 52cc97f6b4
commit a938e686d0

View File

@ -137,7 +137,10 @@ class Session:
# return none twice to match normal return value
# (so caller won't get a type error on no data)
return (None, None)
msg = Message.from_wire(env["msg"].encode('ascii'))
if type(env["msg"]) != bytearray:
msg = Message.from_wire(env["msg"].encode('ascii'))
else:
msg = Message.from_wire(env["msg"])
return (msg, env)
def group_reply(self, routing, msg):