Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <sys/types.h>
#include <sys/time.h>
#include <time.h>
Go to the source code of this file.
Macros | |
#define | UUID_STR_LEN 36 |
#define | UUID_VARIANT_NCS 0 |
#define | UUID_VARIANT_DCE 1 |
#define | UUID_VARIANT_MICROSOFT 2 |
#define | UUID_VARIANT_OTHER 3 |
Typedefs | |
typedef unsigned char | uuid_t[16] |
Functions | |
void | uuid_init (void) |
void | uuid_shutdown (void) |
void | uuid_clear (uuid_t uu) |
int | uuid_compare (const uuid_t uu1, const uuid_t uu2) |
void | uuid_copy (uuid_t dst, const uuid_t src) |
void | uuid_generate (uuid_t out) |
void | uuid_generate_random (uuid_t out) |
void | uuid_generate_time (uuid_t out) |
int | uuid_is_null (const uuid_t uu) |
int | uuid_parse (const char *in, uuid_t uu) |
void | uuid_unparse (const uuid_t uu, char *out) |
time_t | uuid_time (const uuid_t uu, struct timeval *ret_tv) |
int | uuid_type (const uuid_t uu) |
int | uuid_variant (const uuid_t uu) |
#define UUID_STR_LEN 36 |
Definition at line 19 of file gw_uuid.h.
Referenced by add_msg_cb(), append_uuid(), bearerbox_to_smpp(), boxc_sent_pop(), boxc_sent_push(), brunet_send_sms(), clickatell_send_sms(), delayed_http_reply(), dispatch_into_queue(), generate_smppid(), generic_parse_reply(), get_pattern(), handle_pdu(), httpd_remove_message(), kannel_parse_reply(), kannel_send_sms(), main(), main_connection_loop(), msg_cb(), msg_dump(), status_cb(), store_spool_save(), store_to_dict(), store_uuid(), url_pattern(), and urltrans_fill_escape_codes().
#define UUID_VARIANT_DCE 1 |
Definition at line 38 of file gw_uuid.h.
Referenced by uuid_variant().
#define UUID_VARIANT_MICROSOFT 2 |
Definition at line 39 of file gw_uuid.h.
Referenced by uuid_variant().
#define UUID_VARIANT_NCS 0 |
Definition at line 37 of file gw_uuid.h.
Referenced by uuid_variant().
#define UUID_VARIANT_OTHER 3 |
Definition at line 40 of file gw_uuid.h.
Referenced by uuid_variant().
void uuid_clear | ( | uuid_t | uu | ) |
Definition at line 126 of file gw_uuid.c.
References uuid::clock_seq, uuid::node, uuid::time_hi_and_version, uuid::time_low, uuid::time_mid, UUCMP, and uuid_unpack().
Definition at line 150 of file gw_uuid.c.
Referenced by bearerbox_to_smpp(), bearerbox_to_sql(), boxc_receiver(), deliver_sms_to_queue(), obey_request_thread(), store_file_save_ack(), and store_spool_save_ack().
void uuid_generate | ( | uuid_t | out | ) |
Definition at line 393 of file gw_uuid.c.
References get_random_fd(), uuid_generate_random(), and uuid_generate_time().
Referenced by catenate_msg(), concat_handling_check_and_handle(), main(), msg_cb(), sms_split(), soap_send_loop(), store_spool_save(), store_to_dict(), and url_pattern().
void uuid_generate_random | ( | uuid_t | out | ) |
Definition at line 374 of file gw_uuid.c.
References uuid::clock_seq, get_random_bytes(), uuid::time_hi_and_version, uuid_pack(), and uuid_unpack().
Referenced by uuid_generate().
void uuid_generate_time | ( | uuid_t | out | ) |
Definition at line 347 of file gw_uuid.c.
References uuid::clock_seq, get_clock(), get_node_id(), get_random_bytes(), uuid::node, uuid::time_hi_and_version, uuid::time_low, uuid::time_mid, and uuid_pack().
Referenced by uuid_generate().
void uuid_init | ( | void | ) |
int uuid_is_null | ( | const uuid_t | uu | ) |
Definition at line 413 of file gw_uuid.c.
Referenced by get_pattern(), msg_cb(), soap_send_loop(), store_spool_save(), store_to_dict(), and urltrans_fill_escape_codes().
int uuid_parse | ( | const char * | in, |
uuid_t | uu | ||
) |
Definition at line 476 of file gw_uuid.c.
References uuid::clock_seq, uuid::node, uuid::time_hi_and_version, uuid::time_low, uuid::time_mid, and uuid_pack().
Referenced by bb_remove_message(), and parse_uuid().
void uuid_shutdown | ( | void | ) |
Definition at line 97 of file gw_uuid.c.
References get_random_fd().
Referenced by gwlib_shutdown().
time_t uuid_time | ( | const uuid_t | uu, |
struct timeval * | ret_tv | ||
) |
Definition at line 587 of file gw_uuid.c.
References uuid::time_hi_and_version, uuid::time_low, uuid::time_mid, and uuid_unpack().
int uuid_type | ( | const uuid_t | uu | ) |
Definition at line 609 of file gw_uuid.c.
References uuid::time_hi_and_version, and uuid_unpack().
void uuid_unparse | ( | const uuid_t | uu, |
char * | out | ||
) |
Definition at line 562 of file gw_uuid.c.
References uuid::clock_seq, uuid::node, uuid::time_hi_and_version, uuid::time_low, uuid::time_mid, and uuid_unpack().
Referenced by add_msg_cb(), append_uuid(), bearerbox_to_smpp(), boxc_sent_pop(), boxc_sent_push(), brunet_send_sms(), clickatell_send_sms(), delayed_http_reply(), dispatch_into_queue(), generate_smppid(), generic_parse_reply(), get_pattern(), handle_pdu(), kannel_parse_reply(), kannel_send_sms(), main(), main_connection_loop(), msg_cb(), status_cb(), store_spool_save(), store_to_dict(), store_uuid(), url_pattern(), and urltrans_fill_escape_codes().
int uuid_variant | ( | const uuid_t | uu | ) |
Definition at line 617 of file gw_uuid.c.
References uuid::clock_seq, uuid_unpack(), UUID_VARIANT_DCE, UUID_VARIANT_MICROSOFT, UUID_VARIANT_NCS, and UUID_VARIANT_OTHER.