Go to the source code of this file.
◆ BUFFER_BYTES_FREE
#define BUFFER_BYTES_FREE |
( |
| x | ) |
|
Value: ((x) -> tail > (x) -> head \
? sizeof ((x) -> buf) - ((x) -> tail - (x) -> head) \
: (x) -> head - (x) -> tail)
Definition at line 57 of file buffer.h.
◆ BYTES_IN_BUFFER
#define BYTES_IN_BUFFER |
( |
| x | ) |
|
Value: ((x) -> tail > (x) -> head \
? (x) -> tail - (x) -> head - 1 \
: sizeof ((x) -> buf) - ((x) -> head - (x) -> tail) - 1)
Definition at line 62 of file buffer.h.
◆ OMAPI_BUF_SIZE
#define OMAPI_BUF_SIZE 4048 |
◆ omapi_buffer_t
◆ omapi_connection_copyin()
isc_result_t omapi_connection_copyin |
( |
omapi_object_t * | h, |
|
|
const unsigned char * | bufp, |
|
|
unsigned | len ) |
◆ omapi_connection_copyout()
isc_result_t omapi_connection_copyout |
( |
unsigned char * | buf, |
|
|
omapi_object_t * | h, |
|
|
unsigned | size ) |
◆ omapi_connection_flush()
◆ omapi_connection_get_uint16()
isc_result_t omapi_connection_get_uint16 |
( |
omapi_object_t * | c, |
|
|
u_int16_t * | result ) |
◆ omapi_connection_get_uint32()
isc_result_t omapi_connection_get_uint32 |
( |
omapi_object_t * | c, |
|
|
u_int32_t * | result ) |
◆ omapi_connection_put_uint16()
isc_result_t omapi_connection_put_uint16 |
( |
omapi_object_t * | c, |
|
|
u_int32_t | value ) |
◆ omapi_connection_put_uint32()
isc_result_t omapi_connection_put_uint32 |
( |
omapi_object_t * | c, |
|
|
u_int32_t | value ) |
◆ omapi_connection_require()
isc_result_t omapi_connection_require |
( |
omapi_object_t * | h, |
|
|
unsigned | bytes ) |