You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/smsops
Victor Seva a28575161d
Imported Upstream version 4.4.2
9 years ago
..
doc Imported Upstream version 4.4.0 9 years ago
examples Imported Upstream version 4.4.0 9 years ago
Makefile Imported Upstream version 4.4.0 9 years ago
README Imported Upstream version 4.4.2 9 years ago
smsops.c Imported Upstream version 4.4.0 9 years ago
smsops_impl.c Imported Upstream version 4.4.1 9 years ago
smsops_impl.h Imported Upstream version 4.4.0 9 years ago

README

SMS-OPS Module

Carsten Bock

   ng-voice GmbH
   <carsten@ng-voice.com>

Edited by

Carsten Bock

   <carsten@ng-voice.com>

   Copyright © 2015 Carsten Bock, ng-voice GmbH
     __________________________________________________________________

   Table of Contents

   1. Admin Guide

        1. Overview
        2. Dependencies

              2.1. Kamailio Modules
              2.2. External Libraries or Applications

        3. Parameters

              3.1.

        4. Functions

              4.1. isRPDATA()
              4.2. smsdump()

   List of Examples

   1.1. isRPDATA() usage
   1.2. smsdump() usage

Chapter 1. Admin Guide

   Table of Contents

   1. Overview
   2. Dependencies

        2.1. Kamailio Modules
        2.2. External Libraries or Applications

   3. Parameters

        3.1.

   4. Functions

        4.1. isRPDATA()
        4.2. smsdump()

1. Overview

   This module collects the Transformations for 3GPP-SMS.

2. Dependencies

   2.1. Kamailio Modules
   2.2. External Libraries or Applications

2.1. Kamailio Modules

   The following modules must be loaded before this module:
     * No dependencies on other Kamailio modules.

2.2. External Libraries or Applications

   The following libraries or applications must be installed before
   running Kamailio with this module loaded:
     * None.

3. Parameters

   3.1.

   There are no configurable Parameters yet

4. Functions

   4.1. isRPDATA()
   4.2. smsdump()

4.1. isRPDATA()

   Returns true, if the message contains RP-Data in it's body.

   This function can be used from REQUEST_ROUTE.

   Example 1.1. isRPDATA() usage
...
if (isRPDATA())
{
    ...
}
...

4.2. smsdump()

   Dumps the content of a 3GPP-SMS message to the Debug-Log.

   Please make sure, to have debug-Log enabled. Otherwise, you won't see
   anything.

   This function can be used from REQUEST_ROUTE.

   Example 1.2. smsdump() usage
...
smsdump();
...