switch back to EC2 DS for sanity check

This commit is contained in:
Stephen Birarda 2013-02-26 13:59:33 -08:00 committed by stojce
parent 31b93b036e
commit 38cdd615a1
2 changed files with 2 additions and 2 deletions

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);
}