Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include "gwlib/gwlib.h"
#include "numhash.h"
Go to the source code of this file.
Data Structures | |
struct | numhash_table |
struct | numhash_number |
struct | nh_entry |
struct | numhashes |
Macros | |
#define | NUMHASH_AUTO_HASH -1 |
Functions | |
static int | add_item (Numhash *table, struct numhash_number *nro) |
static int | numhash_add_number (Numhash *table, char *nro) |
static Numhash * | numhash_init (int max_numbers, int hash_size) |
int | numhash_find_number (Numhash *table, Octstr *nro) |
int | numhash_find_key (Numhash *table, long long key) |
long long | numhash_get_key (Octstr *nro) |
long long | numhash_get_char_key (char *nro) |
void | numhash_destroy (Numhash *table) |
double | numhash_hash_fill (Numhash *table, int *longest) |
int | numhash_size (Numhash *table) |
Numhash * | numhash_create (const char *seek_url) |
Variables | |
static int | primes [] |
static int | precision = 19 |
#define NUMHASH_AUTO_HASH -1 |
Definition at line 79 of file numhash.c.
Referenced by numhash_create(), and numhash_init().
|
static |
Definition at line 122 of file numhash.c.
References numhash_number::key, numhash_number::next, and warning().
Referenced by numhash_add_number().
|
static |
Definition at line 149 of file numhash.c.
References add_item(), error(), numhash_number::key, numhash_number::next, table::numbers, and numhash_get_char_key().
Referenced by numhash_create().
Numhash* numhash_create | ( | const char * | seek_url | ) |
Definition at line 313 of file numhash.c.
References charset, debug(), error(), http_create_empty_headers(), http_destroy_headers(), http_get_real(), http_header_get_content_type(), HTTP_METHOD_GET, HTTP_OK, info(), lines, numhash_add_number(), NUMHASH_AUTO_HASH, numhash_init(), octstr_create, octstr_destroy(), octstr_get_cstr, octstr_str_compare(), type, url, and warning().
Referenced by create_onetrans(), create_oneuser(), init_smsbox(), smsc2_reload_lists(), and smsc2_start().
void numhash_destroy | ( | Numhash * | table | ) |
Definition at line 275 of file numhash.c.
References table::numbers.
Referenced by destroy_onetrans(), destroy_oneuser(), main(), smsc2_cleanup(), and smsc2_reload_lists().
int numhash_find_key | ( | Numhash * | table, |
long long | key | ||
) |
Definition at line 228 of file numhash.c.
References numhash_number::key, and numhash_number::next.
Referenced by numhash_find_number().
Definition at line 218 of file numhash.c.
References numhash_number::key, numhash_find_key(), and numhash_get_key().
Referenced by bb_smscconn_receive(), blacklisted(), check_allowed_translation(), smsbox_req_handle(), smsc2_rout(), and whitelisted().
long long numhash_get_char_key | ( | char * | nro | ) |
Definition at line 257 of file numhash.c.
References numhash_number::key, and precision.
Referenced by numhash_add_number().
long long numhash_get_key | ( | Octstr * | nro | ) |
Definition at line 242 of file numhash.c.
References numhash_number::key, octstr_get_cstr, octstr_len(), and precision.
Referenced by numhash_find_number().
double numhash_hash_fill | ( | Numhash * | table, |
int * | longest | ||
) |
Definition at line 285 of file numhash.c.
References numhash_number::next.
|
static |
Definition at line 171 of file numhash.c.
References numhash_table::hash, numhash_table::hash_size, numhash_table::number_total, numhash_table::numbers, NUMHASH_AUTO_HASH, precision, primes, and numhash_table::table_size.
Referenced by numhash_create().
int numhash_size | ( | Numhash * | table | ) |
|
static |
Definition at line 117 of file numhash.c.
Referenced by numhash_get_char_key(), numhash_get_key(), and numhash_init().
|
static |
Definition at line 83 of file numhash.c.
Referenced by numhash_init().