X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fdiameter.comm%2FServer.cpp;h=a751d48f700aaad0af377b8a5b7171747186159d;hb=129af2a9a7c287843be5bd443c5b1ad9b08438a8;hp=4b96c5ebf69413e14ec0bb8441363a0081ef648b;hpb=6f990d26c49e6f5bbb31cb1a2a47615918b6c339;p=anna.git diff --git a/source/diameter.comm/Server.cpp b/source/diameter.comm/Server.cpp index 4b96c5e..a751d48 100644 --- a/source/diameter.comm/Server.cpp +++ b/source/diameter.comm/Server.cpp @@ -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); }