have voxel server report hard-coded EC2 external address

This commit is contained in:
Stephen Birarda 2013-03-13 11:08:19 -07:00
parent 95eb241fdd
commit 671c2ef900

View file

@ -53,7 +53,7 @@ void *reportAliveToDS(void *args) {
gettimeofday(&lastSend, NULL);
*output = 'V';
packSocket(output + 1, localAddress, htons(VOXEL_LISTEN_PORT));
packSocket(output + 1, 895283510, htons(MIXER_LISTEN_PORT));
agentList.getAgentSocket().send(DOMAIN_IP, DOMAINSERVER_PORT, output, 7);
double usecToSleep = 1000000 - (usecTimestampNow() - usecTimestamp(&lastSend));