Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <dirent.h>
#include <errno.h>
#include "gwlib/gwlib.h"
#include "dlr_p.h"
#include "sms.h"
#include "bb_store.h"
Go to the source code of this file.
Macros | |
#define | MD5_DIGEST_LEN 32 |
#define | SHA1_DIGEST_LEN 40 |
#define | OUR_DIGEST_LEN MD5_DIGEST_LEN |
#define | MAX_DIRS 100 |
#define | MAP(to, from) |
#define | MAP(to, from) |
Functions | |
static Octstr * | our_hash_func (Octstr *os) |
static int | non_verified_file (const char *filename, const struct stat *sb, int tflag, void *ftwbuf) |
static int | unlink_file (const char *filename, const struct stat *sb, int tflag, void *ftwbuf) |
static int | for_each_file (const Octstr *dir_s, int ignore_err, int(*cb)(const char *, const struct stat *, int, void *)) |
static Octstr * | get_msg_filename (const Octstr *dir_s, const Octstr *hash, const Octstr *dst) |
static Octstr * | get_msg_surrogate (const Octstr *dir_s, const Octstr *hash, const Octstr *dst, Octstr **filename) |
static void | dlr_spool_add (struct dlr_entry *dlr) |
static struct dlr_entry * | dlr_spool_get (const Octstr *smsc, const Octstr *ts, const Octstr *dst) |
static void | dlr_spool_remove (const Octstr *smsc, const Octstr *ts, const Octstr *dst) |
static void | dlr_spool_shutdown () |
static long | dlr_spool_messages (void) |
static void | dlr_spool_flush (void) |
struct dlr_storage * | dlr_init_spool (Cfg *cfg) |
Variables | |
static Octstr * | spool_dir = NULL |
static Counter * | counter |
static struct dlr_storage | handles |
#define MAP | ( | to, | |
from | |||
) |
Referenced by dlr_spool_add(), and dlr_spool_get().
#define MAP | ( | to, | |
from | |||
) |
#define MAX_DIRS 100 |
Definition at line 93 of file dlr_spool.c.
Referenced by dlr_spool_add(), dlr_spool_get(), and dlr_spool_remove().
#define MD5_DIGEST_LEN 32 |
Definition at line 84 of file dlr_spool.c.
#define OUR_DIGEST_LEN MD5_DIGEST_LEN |
Definition at line 89 of file dlr_spool.c.
Referenced by get_msg_filename().
#define SHA1_DIGEST_LEN 40 |
Definition at line 85 of file dlr_spool.c.
struct dlr_storage* dlr_init_spool | ( | Cfg * | cfg | ) |
Definition at line 606 of file dlr_spool.c.
References cfg, cfg_get, cfg_get_single_group(), counter, counter_create(), for_each_file(), handles, non_verified_file(), octstr_imm(), panic, and spool_dir.
Referenced by dlr_init().
|
static |
Definition at line 369 of file dlr_spool.c.
References dlr_entry::boxc_id, counter, counter_increase(), dlr_entry::destination, dlr_entry_destroy(), error(), filename, MAP, dlr_entry::mask, MAX_DIRS, msg, msg_create, msg_destroy(), octstr_append(), octstr_binary_to_hex(), octstr_destroy(), octstr_duplicate, octstr_format(), octstr_get_cstr, octstr_hash_key(), octstr_len(), our_hash_func(), report_mt, dlr_entry::service, dlr_entry::smsc, dlr_entry::source, spool_dir, store_msg_pack, dlr_entry::timestamp, and dlr_entry::url.
|
static |
Definition at line 581 of file dlr_spool.c.
References counter, counter_set(), for_each_file(), spool_dir, and unlink_file().
|
static |
Definition at line 459 of file dlr_spool.c.
References dlr_entry::boxc_id, dlr_entry::destination, dlr_entry_create(), error(), filename, get_msg_surrogate(), MAP, dlr_entry::mask, MAX_DIRS, msg, msg_destroy(), octstr_append(), octstr_binary_to_hex(), octstr_destroy(), octstr_duplicate, octstr_format(), octstr_get_cstr, octstr_hash_key(), our_hash_func(), dlr_entry::service, dlr_entry::smsc, dlr_entry::source, spool_dir, store_msg_unpack, dlr_entry::timestamp, and dlr_entry::url.
|
static |
Definition at line 524 of file dlr_spool.c.
References counter, counter_decrease(), error(), filename, get_msg_filename(), MAX_DIRS, octstr_append(), octstr_destroy(), octstr_duplicate, octstr_format(), octstr_get_cstr, octstr_hash_key(), our_hash_func(), dlr_entry::smsc, and spool_dir.
|
static |
Definition at line 562 of file dlr_spool.c.
References counter, counter_destroy(), octstr_destroy(), and spool_dir.
|
static |
Definition at line 252 of file dlr_spool.c.
References error(), filename, octstr_destroy(), octstr_format(), and octstr_get_cstr.
Referenced by dlr_init_spool(), and dlr_spool_flush().
|
static |
Definition at line 300 of file dlr_spool.c.
References error(), found, octstr_copy, octstr_create, octstr_destroy(), octstr_format(), octstr_get_cstr, octstr_len(), octstr_ncompare(), octstr_search(), and OUR_DIGEST_LEN.
Referenced by dlr_spool_remove(), and get_msg_surrogate().
|
static |
Definition at line 351 of file dlr_spool.c.
References filename, get_msg_filename(), octstr_get_cstr, and octstr_read_file().
Referenced by dlr_spool_get().
|
static |
Definition at line 204 of file dlr_spool.c.
References counter, and counter_increase().
Referenced by dlr_init_spool().
Definition at line 123 of file dlr_spool.c.
References md5digest(), octstr_binary_to_hex(), octstr_create_from_data, octstr_get_cstr, and octstr_len().
Referenced by dlr_spool_add(), dlr_spool_get(), dlr_spool_remove(), and main().
|
static |
Definition at line 224 of file dlr_spool.c.
References error(), and filename.
Referenced by dlr_spool_flush().
|
static |
Definition at line 112 of file dlr_spool.c.
Referenced by dlr_init_spool(), dlr_spool_add(), dlr_spool_flush(), dlr_spool_messages(), dlr_spool_remove(), dlr_spool_shutdown(), and non_verified_file().
|
static |
Definition at line 592 of file dlr_spool.c.
Referenced by dlr_init_spool().
|
static |
Definition at line 107 of file dlr_spool.c.
Referenced by dlr_init_spool(), dlr_spool_add(), dlr_spool_flush(), dlr_spool_get(), dlr_spool_remove(), and dlr_spool_shutdown().