Remove warnings
[anna.git] / source / diameter.comm / Server.cpp
index 7bd1797..32b3efa 100644 (file)
@@ -40,12 +40,12 @@ void Server::initialize() throw() {
 }
 
 void Server::initializeStatisticResources() throw() {
-  std::string accName = "sent to remote server '";
+  std::string accName = "remote server '";
   accName += anna::functions::socketLiteralAsString(a_socket.first, a_socket.second);
   accName += "' from origin-realm '";
-  accName += a_engine ? a_engine->getOriginRealm() : "unknown"; // it should be known (createServer)
+  accName += a_engine ? a_engine->getOriginRealmName() : "unknown"; // it should be known (createServer)
   accName += "' and origin-host '";
-  accName += a_engine ? a_engine->getOriginHost() : "unknown"; // it should be known (createServer)
+  accName += a_engine ? a_engine->getOriginHostName() : "unknown"; // it should be known (createServer)
   accName += "'";
   a_messageStatistics.initialize(accName);
 }
@@ -124,7 +124,7 @@ bool Server::send(const Message* message, int socketId) throw(anna::RuntimeExcep
 
     try {
       // Send:
-      const Response* response = a_lastUsedResource->send(message);
+      a_lastUsedResource->send(message);
       return true; // no matter if response is NULL (answers, i.e.) or not.
     } catch(anna::RuntimeException &ex) {
       LOGDEBUG(
@@ -146,12 +146,11 @@ bool Server::send(const Message* message, int socketId) throw(anna::RuntimeExcep
 bool Server::broadcast(const Message* message) throw(anna::RuntimeException) {
   LOGMETHOD(anna::TraceMethod tttm("diameter::comm::Server", "broadcast", ANNA_FILE_LOCATION));
   assertReady();
-  const Response* response;
   bool allok = true;
 
   for(std::vector<ClientSession*>::iterator it = begin(); it != end(); it++) {
     try {
-      response = (*it)->send(message);
+      (*it)->send(message);
     } catch(anna::RuntimeException &ex) {
       ex.trace();
       allok = false;