mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 13:38:02 +02:00
add missing byte to domain server packets
This commit is contained in:
parent
af48f4aad2
commit
16bdacb8bf
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ int main(int argc, const char * argv[])
|
||||||
;
|
;
|
||||||
|
|
||||||
if ((packetBytesWithoutLeadingChar = (currentBufferPos - startPointer))) {
|
if ((packetBytesWithoutLeadingChar = (currentBufferPos - startPointer))) {
|
||||||
agentList.getAgentSocket()->send((sockaddr *)&agentPublicAddress, broadcastPacket, packetBytesWithoutLeadingChar);
|
agentList.getAgentSocket()->send((sockaddr *)&agentPublicAddress, broadcastPacket, packetBytesWithoutLeadingChar + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue