Base protocol codec for comm::Engine. Supported retransmissions
[anna.git] / source / diameter.comm / Server.cpp
index 4b96c5e..a751d48 100644 (file)
@@ -315,27 +315,32 @@ anna::xml::Node* Server::asXML(anna::xml::Node* parent) const throw() {
 
 
 void Server::eventPeerShutdown(const ClientSession *clientSession) throw() {
-  // Inform father server:
+  // Inform father entity:
   a_parent->eventPeerShutdown(clientSession);
 }
 
+void Server::eventRequestRetransmission(const ClientSession* clientSession, Message *request) throw() {
+  // Inform father entity:
+  a_parent->eventRequestRetransmission(clientSession, request);
+}
+
 void Server::eventResponse(const Response& response) throw(anna::RuntimeException) {
-  // Inform father server:
+  // Inform father entity:
   a_parent->eventResponse(response);
 }
 
 void Server::eventRequest(ClientSession *clientSession, const anna::DataBlock & request) throw(anna::RuntimeException) {
-  // Inform father server:
+  // Inform father entity:
   a_parent->eventRequest(clientSession, request);
 }
 
 void Server::eventUnknownResponse(ClientSession *clientSession, const anna::DataBlock & response) throw(anna::RuntimeException) {
-  // Inform father server:
+  // Inform father entity:
   a_parent->eventUnknownResponse(clientSession, response);
 }
 
 void Server::eventDPA(ClientSession *clientSession, const anna::DataBlock & response) throw(anna::RuntimeException) {
-  // Inform father server:
+  // Inform father entity:
   a_parent->eventDPA(clientSession, response);
 }