00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef __NASREQ_CLIENT_SESSION_H__
00043 #define __NASREQ_CLIENT_SESSION_H__
00044
00045 #include <string>
00046 #include <list>
00047 #include "ace/Synch.h"
00048 #include "diameter_api.h"
00049 #include "diameter_nasreq_client_fsm.hxx"
00050 #include "diameter_nasreq_parser.hxx"
00051
00052 class DiameterNasreqClientSession;
00053
00055 class DIAMETER_NASREQ_CLIENT_EXPORTS AA_AnswerHandler :
00056 public AAASessionMessageHandler
00057 {
00058 public:
00059 AA_AnswerHandler
00060 (AAAApplicationCore &appCore, DiameterNasreqClientSession &s)
00061 : AAASessionMessageHandler(appCore, AA_CommandCode),
00062 session(s)
00063 {}
00064 private:
00065 AAAReturnCode HandleMessage (AAAMessage &msg);
00066 DiameterNasreqClientSession &session;
00067 };
00068
00072 class DIAMETER_NASREQ_CLIENT_EXPORTS DiameterNasreqClientSession :
00073 public AAAClientSession, public DiameterNasreqClientStateMachine
00074 {
00075 public:
00076
00078 DiameterNasreqClientSession(AAAApplicationCore&, DiameterJobHandle &h);
00079
00081 ~DiameterNasreqClientSession() {}
00082
00083 DiameterNasreqClientSession* Self() { return this; }
00084
00091 AAAReturnCode HandleMessage(AAAMessage &msg);
00092
00099 AAAReturnCode HandleDisconnect();
00100
00102 AAAReturnCode HandleSessionTimeout();
00103
00105 AAAReturnCode HandleAuthLifetimeTimeout();
00106
00108 AAAReturnCode HandleAuthGracePeriodTimeout();
00109
00115 AAAReturnCode HandleTimeout();
00116
00122 AAAReturnCode HandleAbort() { return AAA_ERR_SUCCESS; }
00123
00124 void Start() throw (AAA_Error)
00125 {
00126 DiameterNasreqClientStateMachine::Start();
00127 AAAClientSession::Start();
00128 }
00129
00130 protected:
00131 private:
00132
00133 AA_AnswerHandler answerHandler;
00134 };
00135
00136 #endif