1 // ANNA - Anna is Not Nothingness Anymore //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
9 #ifndef example_diameter_launcher_MyLocalServer_hpp
10 #define example_diameter_launcher_MyLocalServer_hpp
13 #include <anna/diameter.comm/LocalServer.hpp>
14 #include <anna/diameter/codec/MessagesDeque.hpp>
25 class MyLocalServer : public anna::diameter::comm::LocalServer {
27 void eventResponse(const anna::diameter::comm::Response&) throw(anna::RuntimeException);
28 void eventRequest(anna::diameter::comm::ServerSession *, const anna::DataBlock&) throw(anna::RuntimeException);
29 void eventUnknownResponse(anna::diameter::comm::ServerSession *, const anna::DataBlock&) throw(anna::RuntimeException);
30 void eventDPA(anna::diameter::comm::ServerSession *, const anna::DataBlock&) throw(anna::RuntimeException);
33 virtual ~MyLocalServer() {;}
35 anna::diameter::codec::MessagesDeque a_reactingAnswers;
36 anna::diameter::codec::MessagesDeque *getReactingAnswers() throw() { return (anna::diameter::codec::MessagesDeque*)&a_reactingAnswers; }