TCAPMessageRegister

Type

SwitchKit API message

Description

Use the SK_TCAPMessageRegister message to register an application for all TCAP-related PPL Event Indications given a specific Originating Point Code (OPC)

Important! Only events of Component Type 0x70 (TCAP TUSI) will be sent to the registered application.

Sent by

Function sk_pplTCAPRegister()

Arguments

The following table shows the arguments you can change:

Argument

Description

int OPC

The Originating Point Code of the SS7 TCAP stack generating the PPL Event Indications.

C Structure

typedef struct {

int OPC;

UBYTE RegisterFlag;

} SK_TCAPMessageRegister;

C Structure Response

typedef struct {

int Status;

} SK_TCAPMessageRegisterAck;

C++ Class

class SKC_TCAPMessageRegister : public SKC_ToolkitMessage {

public:

int getOPC() const;

void setOPC(int x);

UBYTE getRegisterFlag() const;

void setRegisterFlag(UBYTE x);

};

C++ Class Response

class SKC_TCAPMessageRegisterAck : public SKC_ToolkitAck {

public:

int getStatus() const;

void setStatus(int x);

};