don't print RAW packet to stdout

This commit is contained in:
Stephen Birarda 2013-02-18 16:35:45 -08:00
parent 307fa9e5fa
commit 741654e13d

View file

@ -62,7 +62,6 @@ int update_agents(char * data, int length) {
spot = packet.find_first_of (",", 0);
while (spot != std::string::npos) {
std::string thisAgent = packet.substr(start_spot, spot-start_spot);
std::cout << "RAW: " << thisAgent << "\n";
sscanf(thisAgent.c_str(), "%c %s %hd %s %hd", &agentType, public_address, &public_port, private_address, &private_port);
add_agent(public_address, public_port, private_address, private_port, agentType);
numAgents++;