|
Yate
|
Abstract SS7 SCCP user interface. More...
#include <yatesig.h>
Public Member Functions | |
| SCCPUser (const NamedList ¶ms) | |
| virtual | ~SCCPUser () |
| virtual bool | initialize (const NamedList *config) |
| virtual bool | sendData (DataBlock &data, NamedList ¶ms) |
| virtual bool | sccpNotify (SCCP::Type type, NamedList ¶ms) |
| virtual HandledMSU | receivedData (DataBlock &data, NamedList ¶ms) |
| virtual HandledMSU | notifyData (DataBlock &data, NamedList ¶ms) |
| virtual bool | managementNotify (SCCP::Type type, NamedList ¶ms) |
| virtual void | attach (SCCP *sccp) |
| SCCP * | sccp () const |
Public Member Functions inherited from SignallingComponent | |
| virtual | ~SignallingComponent () |
| virtual const String & | toString () const |
| virtual bool | control (NamedList ¶ms) |
| virtual NamedList * | controlCreate (const char *oper=0) |
| virtual bool | controlExecute (NamedList *params) |
| virtual void | engine (SignallingEngine *eng) |
| SignallingEngine * | engine () const |
| int | debugLevel (int level) |
| const String & | componentType () const |
Public Member Functions inherited from RefObject | |
| RefObject () | |
| virtual | ~RefObject () |
| virtual void * | getObject (const String &name) const |
| virtual bool | alive () const |
| bool | ref () |
| bool | deref () |
| int | refcount () const |
| virtual void | destruct () |
Public Member Functions inherited from GenObject | |
| GenObject () | |
| virtual | ~GenObject () |
| virtual const String & | traceId () const |
| NamedCounter * | getObjCounter () const |
| NamedCounter * | setObjCounter (NamedCounter *counter) |
Public Member Functions inherited from DebugEnabler | |
| DebugEnabler (int level=TelEngine::debugLevel(), bool enabled=true) | |
| int | debugLevel () const |
| int | debugLevel (int level) |
| bool | debugEnabled () const |
| void | debugEnabled (bool enable) |
| const char * | debugName () const |
| bool | debugAt (int level) const |
| bool | debugChained () const |
| void | debugChain (const DebugEnabler *chain=0) |
| void | debugCopy (const DebugEnabler *original=0) |
Protected Member Functions | |
| virtual void | destroyed () |
Protected Member Functions inherited from SignallingComponent | |
| SignallingComponent (const char *name=0, const NamedList *params=0, const char *type="unknown") | |
| void | insert (SignallingComponent *component) |
| virtual void | detach () |
| virtual void | timerTick (const Time &when) |
| void | setName (const char *name) |
| void | setCompType (const char *type) |
| unsigned long | tickSleep (unsigned long usec=1000000) const |
Protected Member Functions inherited from RefObject | |
| virtual void | zeroRefs () |
| bool | resurrect () |
Protected Member Functions inherited from DebugEnabler | |
| void | debugName (const char *name) |
Additional Inherited Members | |
Static Public Member Functions inherited from SignallingComponent | |
| static bool | resolveConfig (const String &cmpName, NamedList ¶ms, const NamedList *config) |
Static Public Member Functions inherited from RefObject | |
| static bool | alive (const RefObject *obj) |
| static bool | efficientIncDec () |
Static Public Member Functions inherited from GenObject | |
| static void * | getObject (const String &name, const GenObject *obj) |
| static bool | getObjCounting () |
| static void | setObjCounting (bool enable) |
| static NamedCounter * | getObjCounter (const String &name, bool create=true) |
| static ObjList & | getObjCounters () |
Abstract SS7 SCCP user interface.
An interface to a SS7 Signalling Connection Control Part user
|
virtual |
|
protectedvirtual |
This method is called to clean up and destroy the object after the reference counter becomes zero
Reimplemented from SignallingComponent.
|
virtual |
Configure and initialize the component and any subcomponents it may have
| config | Optional configuration parameters override |
Reimplemented from SignallingComponent.
Reimplemented in SS7TCAP.
|
virtual |
Notification from SCCP management to a sccp user about pointcodes status, OOS responses/indications, subsystems status
Type: CoordinateIndication -> Indication from a remote SCCP User that requires to go OOS params: "ssn" -> The subsystem number of the remote SCCP User "smi" -> Subsystem multiplicity indicator "pointcode" -> The pointcode of the remote SCCP User Type: SubsystemStatus -> Request from SCCP Management to SCCP Users to query the specified subsystem status. This happens when a SubsystemStatusTest(SST) message is received params: "ssn" -> The requested subsystem returned params: "subsystem-status" -> The status of the subsystem: UserOutOfService, UserInService Missing = UserOutOfService
| type | The type of notification |
| params | List of parameters |
Reimplemented in SS7TCAP.
|
virtual |
Notification from SCCP that a message failed to arrive to it's destination
| data | User data send. |
| params | SCCP parameters Note! The data may not contain the full message block previously sent (in case of SCCP segmentation), but it must always must contain the first segment |
Reimplemented in SS7TCAP.
|
virtual |
|
inline |
|
virtual |
Send a request / notification from users to sccp regarding a subsystem status
Type : CoordinateRequest -> Request from a user to sccp to go OOS
params: "ssn" The ssn to go OOS
"smi" Subsystem multiplicity indicator
"backups" The number of backup subsystems
"backup.N.ssn" The ssn of the backup subsystem number N
"backup.N.pointcode" The ssn of the backup subsystem number N
Type : CoordinateResponse -> Indication from a user to sccp in response to CoordinateIndication<
params: "ssn" The subsystem number that approved the indication
"smi" 0
Type : StatusRequest -> Request from user to sccp to update a subsystem status
params: "ssn" The affected subsystem number
"smi" 0;
"subsystem-status": The requested status: UserOutOfService, UserInService
| type | The type of request / notification |
| params | List of parameters |