/usr/include/kannel/gw/smscconn.h is in kannel-dev 1.4.3-2+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | /* ====================================================================
* The Kannel Software License, Version 1.0
*
* Copyright (c) 2001-2009 Kannel Group
* Copyright (c) 1998-2001 WapIT Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Kannel Group (http://www.kannel.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Kannel" and "Kannel Group" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For written permission, please
* contact org@kannel.org.
*
* 5. Products derived from this software may not be called "Kannel",
* nor may "Kannel" appear in their name, without prior written
* permission of the Kannel Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE KANNEL GROUP OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Kannel Group. For more information on
* the Kannel Group, please see <http://www.kannel.org/>.
*
* Portions of this software are based upon software originally written at
* WapIT Ltd., Helsinki, Finland for the Kannel project.
*/
#ifndef SMSCCONN_H
#define SMSCCONN_H
/*
* SMSC Connection
*
* Interface for main bearerbox to SMS center connection modules
*
* At first stage a simple wrapper for old ugly smsc module
*
* Kalle Marjola 2000
*/
#include "gwlib/gwlib.h"
#include "gw/msg.h"
/*
* Structure hierarchy:
*
* Bearerbox keeps list of pointers to SMSCConn structures, which
* include all data needed by connection, including routing data.
* If any extra data not linked to that SMSC Connection is needed,
* that is held in bearerbox
*
* SMSCConn is internal structure for smscconn module. It has a list
* of common variables like number of sent/received messages and
* and pointers to appropriate lists, and then it has a void pointer
* to appropriate smsc structure defined and used by corresponding smsc
* connection type module (like CIMD2, SMPP etc al)
*
* Concurrency notes:
*
* bearerbox is responsible for not calling cleanup at the same time
* as it calls other functions, but must call it after it has noticed that
* status == KILLED
*/
typedef struct smscconn SMSCConn;
typedef enum {
SMSCCONN_CONNECTING,
SMSCCONN_ACTIVE,
SMSCCONN_ACTIVE_RECV,
SMSCCONN_RECONNECTING,
SMSCCONN_DISCONNECTED,
SMSCCONN_DEAD /* ready to be cleaned */
} smscconn_status_t;
typedef enum {
SMSCCONN_ALIVE = 0,
SMSCCONN_KILLED_WRONG_PASSWORD = 1,
SMSCCONN_KILLED_CANNOT_CONNECT = 2,
SMSCCONN_KILLED_SHUTDOWN = 3
} smscconn_killed_t;
typedef struct smsc_state {
smscconn_status_t status; /* see enumeration, below */
smscconn_killed_t killed; /* if we are killed, why */
int is_stopped; /* is connection currently in stopped state? */
unsigned long received; /* total number */
unsigned long sent; /* total number */
unsigned long failed; /* total number */
long queued; /* set our internal outgoing queue length */
long online; /* in seconds */
int load; /* subjective value 'how loaded we are' for
* routing purposes, similar to sms/wapbox load */
} StatusInfo;
/* create new SMS center connection from given configuration group,
* or return NULL if failed.
*
* The new connection does its work in its own privacy, and calls
* callback functions at bb_smscconn_cb module. It calls function
* bb_smscconn_ready when it has put everything up.
*
* NOTE: this function starts one or more threads to
* handle traffic with SMSC, and caller does not need to
* care about it afterwards.
*/
SMSCConn *smscconn_create(CfgGroup *cfg, int start_as_stopped);
/* shutdown/destroy smscc. Stop receiving messages and accepting
* new message to-be-sent. Die when any internal queues are empty,
* if finish_sending != 0, or if set to 0, kill connection ASAP and
* call send_failed -callback for all messages still in queue
*/
void smscconn_shutdown(SMSCConn *smscconn, int finish_sending);
/* this is final function to cleanup all memory still held by
* SMSC Connection after it has been killed (for synchronization
* problems it cannot be cleaned automatically)
* Call this after send returns problems or otherwise notice that
* status is KILLED. Returns 0 if OK, -1 if it cannot be (yet) destroyed.
*/
int smscconn_destroy(SMSCConn *smscconn);
/* stop smscc. A stopped smscc does not receive any messages, but can
* still send messages, so that internal queue can be emptied. The caller
* is responsible for not to add new messages into queue if the caller wants
* the list to empty at some point
*/
int smscconn_stop(SMSCConn *smscconn);
/* start stopped smscc. Return -1 if failed, 0 otherwise */
void smscconn_start(SMSCConn *smscconn);
/* Return name of the SMSC, as reference - caller may not free it! */
const Octstr *smscconn_name(SMSCConn *smscconn);
/* Return ID of the SMSC, as reference - caller may not free it! */
const Octstr *smscconn_id(SMSCConn *conn);
/* Check if this SMSC Connection is usable as sender for given
* message. The bearerbox must then select the good SMSC for sending
* according to load levels and connected/disconnected status, this
* function only checks preferred/denied strings and overall status
*
* Return -1 if not (denied or permanently down), 0 if okay,
* 1 if preferred one.
*/
int smscconn_usable(SMSCConn *conn, Msg *msg);
/* Call SMSC specific function to handle sending of 'msg'
* Returns immediately, with 0 if successful and -1 if failed.
* In any case the caller is still responsible for 'msg' after this
* call
* Note that return value does NOT mean that message has been send
* or send has failed, but SMSC Connection calls appropriate callback
* function later
*/
int smscconn_send(SMSCConn *smsccconn, Msg *msg);
/* Return just status as defined below */
int smscconn_status(SMSCConn *smscconn);
/* return current status of the SMSC connection, filled to infotable.
* For unknown numbers, put -1. Return -1 if either argument was NULL.
*/
int smscconn_info(SMSCConn *smscconn, StatusInfo *infotable);
#endif
|