3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-18 07:57:16 +02:00

switch back to EC2 DS for sanity check

This commit is contained in:
Stephen Birarda 2013-02-26 13:59:33 -08:00
parent c645830809
commit c123990d7a
2 changed files with 2 additions and 2 deletions
interface/src
shared/src

View file

@ -54,7 +54,7 @@ int simulate_on = 1;
//
char DOMAIN_HOSTNAME[] = "highfidelity.below92.com";
char DOMAIN_IP[100] = "192.168.1.47"; // IP Address will be used first if not empty string
char DOMAIN_IP[100] = ""; // IP Address will be used first if not empty string
const int DOMAINSERVER_PORT = 40102;
AgentList agentList;

View file

@ -147,7 +147,7 @@ bool AgentList::addOrUpdateAgent(sockaddr *publicSocket, sockaddr *localSocket,
// this is an audio mixer
// for now that means we need to tell the audio class
// to use the local socket information the domain server gave us
sockaddr_in *localSocketIn = (sockaddr_in *)publicSocket;
sockaddr_in *localSocketIn = (sockaddr_in *)localSocket;
audioMixerSocketUpdate(localSocketIn->sin_addr.s_addr, localSocketIn->sin_port);
}