correct use of member variables for DS check in

This commit is contained in:
Stephen Birarda 2013-07-11 13:05:15 -07:00
parent a0226b2548
commit 66a998e752

View file

@ -277,7 +277,7 @@ void NodeList::sendDomainServerCheckIn() {
_checkInPacketSize = packetPosition - _checkInPacket;
}
_nodeSocket.send(DOMAIN_IP, DOMAINSERVER_PORT, checkInPacket, checkInPacketSize);
_nodeSocket.send(DOMAIN_IP, DOMAINSERVER_PORT, _checkInPacket, _checkInPacketSize);
}
int NodeList::processDomainServerList(unsigned char* packetData, size_t dataBytes) {