mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +01:00
Also fix network byte order on the broker side
This commit is contained in:
parent
f5f6f20113
commit
55cbd752c6
@ -83,7 +83,7 @@ class ConnectToBrokerPacket(Packet):
|
|||||||
self.public_ip = ""
|
self.public_ip = ""
|
||||||
self.type = CONNECT_TO_BROKER
|
self.type = CONNECT_TO_BROKER
|
||||||
self.name = ""
|
self.name = ""
|
||||||
self.serverid = 0
|
self.server_id = 0
|
||||||
|
|
||||||
def demarshal_from_data(self, data):
|
def demarshal_from_data(self, data):
|
||||||
Packet.demarshal_from_data(self, data)
|
Packet.demarshal_from_data(self, data)
|
||||||
@ -91,6 +91,7 @@ class ConnectToBrokerPacket(Packet):
|
|||||||
self.key = struct.unpack(">H", data[44:46])[0]
|
self.key = struct.unpack(">H", data[44:46])[0]
|
||||||
self._is_master = struct.unpack(">H", data[46:48])[0]
|
self._is_master = struct.unpack(">H", data[46:48])[0]
|
||||||
self.name = struct.unpack(">32s", data[48:48+32])[0]
|
self.name = struct.unpack(">32s", data[48:48+32])[0]
|
||||||
|
self.server_id = struct.unpack(">L", data[80:84])[0]
|
||||||
|
|
||||||
def get_key(self):
|
def get_key(self):
|
||||||
return self.key
|
return self.key
|
||||||
|
Loading…
Reference in New Issue
Block a user