diff --git a/interface/src/Agent.cpp b/interface/src/Agent.cpp index 0e877d8424..c062f8d9d4 100644 --- a/interface/src/Agent.cpp +++ b/interface/src/Agent.cpp @@ -199,7 +199,7 @@ void setAgentPing(char * address, unsigned short port) { void kludgyMixerUpdate(Audio audio) { for (int i = 0; i < num_agents; i++) { if (agents[i].agentType == 'M') { - audio.updateMixerParams(agents[i].public_address, agents[i].public_port); + audio.updateMixerParams(agents[i].private_address, agents[i].private_port); } } } diff --git a/mixer/src/main.cpp b/mixer/src/main.cpp index f34a1110e3..26fca7fe78 100644 --- a/mixer/src/main.cpp +++ b/mixer/src/main.cpp @@ -229,7 +229,7 @@ void *reportAliveToDS(void *args) { while (true) { gettimeofday(&lastSend, NULL); - sprintf(output, "%c %f,%f,%f", 'M', 0.f, 0.f, 0.f); + sprintf(output, "%c %f,%f,%f,54.241.92.53 %hd", 'M', 0.f, 0.f, 0.f, MIXER_LISTEN_PORT); int packetSize = strlen(output); audioSocket.send(DOMAIN_IP, DOMAINSERVER_PORT, output, packetSize);