Kannel: Open Source WAP and SMS gateway
svn-r5336
|
Go to the source code of this file.
Macros | |
#define | WS_PUT_UINT8(buf, val) |
#define | WS_PUT_UINT16(buf, val) |
#define | WS_PUT_UINT32(buf, val) |
#define | WS_GET_UINT8(buf, var) |
#define | WS_GET_UINT16(buf, var) |
#define | WS_GET_UINT32(buf, var) |
#define | WS_MB_UINT32_MAX_ENCODED_LEN 5 |
Enumerations | |
enum | WsEncodingSpec { WS_ENC_END, WS_ENC_BYTE, WS_ENC_INT8, WS_ENC_UINT8, WS_ENC_INT16, WS_ENC_UINT16, WS_ENC_INT32, WS_ENC_UINT32, WS_ENC_MB_UINT16, WS_ENC_MB_UINT32, WS_ENC_DATA } |
Functions | |
unsigned char * | ws_encode_mb_uint32 (WsUInt32 value, unsigned char *buffer, size_t *len_return) |
WsUInt32 | ws_decode_mb_uint32 (const unsigned char *buffer, size_t *len) |
WsBool | ws_encode_buffer (WsBuffer *buffer,...) |
size_t | ws_decode_buffer (const unsigned char *buffer, size_t buffer_len,...) |
#define WS_GET_UINT16 | ( | buf, | |
var | |||
) |
Definition at line 107 of file wsencode.h.
Referenced by ws_asm_dasm(), and ws_decode_buffer().
#define WS_GET_UINT32 | ( | buf, | |
var | |||
) |
Definition at line 117 of file wsencode.h.
Referenced by ws_decode_buffer().
#define WS_GET_UINT8 | ( | buf, | |
var | |||
) |
Definition at line 101 of file wsencode.h.
Referenced by ws_asm_dasm(), and ws_decode_buffer().
#define WS_MB_UINT32_MAX_ENCODED_LEN 5 |
Definition at line 133 of file wsencode.h.
Referenced by ws_bc_data_free(), and ws_encode_mb_uint32().
#define WS_PUT_UINT16 | ( | buf, | |
val | |||
) |
Definition at line 85 of file wsencode.h.
Referenced by ws_encode_buffer().
#define WS_PUT_UINT32 | ( | buf, | |
val | |||
) |
Definition at line 92 of file wsencode.h.
Referenced by ws_encode_buffer().
#define WS_PUT_UINT8 | ( | buf, | |
val | |||
) |
Definition at line 78 of file wsencode.h.
Referenced by ws_bc_encode(), and ws_encode_buffer().
enum WsEncodingSpec |
Enumerator | |
---|---|
WS_ENC_END | |
WS_ENC_BYTE | |
WS_ENC_INT8 | |
WS_ENC_UINT8 | |
WS_ENC_INT16 | |
WS_ENC_UINT16 | |
WS_ENC_INT32 | |
WS_ENC_UINT32 | |
WS_ENC_MB_UINT16 | |
WS_ENC_MB_UINT32 | |
WS_ENC_DATA |
Definition at line 136 of file wsencode.h.
size_t ws_decode_buffer | ( | const unsigned char * | buffer, |
size_t | buffer_len, | ||
... | |||
) |
Definition at line 222 of file wsencode.c.
References WsBufferRec::len, ws_decode_mb_uint32(), WS_ENC_BYTE, WS_ENC_DATA, WS_ENC_END, WS_ENC_INT16, WS_ENC_INT32, WS_ENC_INT8, WS_ENC_MB_UINT16, WS_ENC_MB_UINT32, WS_ENC_UINT16, WS_ENC_UINT32, WS_ENC_UINT8, ws_fatal(), WS_GET_UINT16, WS_GET_UINT32, and WS_GET_UINT8.
Referenced by ws_bc_decode().
WsUInt32 ws_decode_mb_uint32 | ( | const unsigned char * | buffer, |
size_t * | len | ||
) |
Definition at line 104 of file wsencode.c.
References WsBufferRec::len, WS_MB_CONT_BIT, and WS_MB_DATA_MASK.
Referenced by ws_bc_data_free(), and ws_decode_buffer().
Definition at line 123 of file wsencode.c.
References WsBufferRec::data, error(), WsBufferRec::len, ws_buffer_append_space(), WS_ENC_BYTE, WS_ENC_DATA, WS_ENC_END, WS_ENC_INT16, WS_ENC_INT32, WS_ENC_INT8, WS_ENC_MB_UINT16, WS_ENC_MB_UINT32, WS_ENC_UINT16, WS_ENC_UINT32, WS_ENC_UINT8, ws_encode_mb_uint32(), WS_FALSE, ws_fatal(), WS_PUT_UINT16, WS_PUT_UINT32, WS_PUT_UINT8, and WS_TRUE.
Referenced by ws_asm_linearize(), and ws_bc_encode().
unsigned char* ws_encode_mb_uint32 | ( | WsUInt32 | value, |
unsigned char * | buffer, | ||
size_t * | len_return | ||
) |
Definition at line 79 of file wsencode.c.
References WsBufferRec::len, WS_MB_CONT_BIT, WS_MB_DATA_MASK, and WS_MB_UINT32_MAX_ENCODED_LEN.
Referenced by ws_bc_encode(), and ws_encode_buffer().