#include <algorithm>
#include <cstddef>
#include <cstdint>
Go to the source code of this file.
|
namespace | isc |
| Defines the logger used by the top-level component of kea-lfc.
|
|
namespace | isc::util |
|
|
template<typename uint_t > |
uint_t | isc::util::readUint (void const *const buffer, size_t const length) |
| Read an unsigned integer from given buffer.
|
|
uint16_t | isc::util::readUint16 (void const *const buffer, size_t const length) |
| uint16_t wrapper over readUint.
|
|
uint32_t | isc::util::readUint32 (void const *const buffer, size_t const length) |
| uint32_t wrapper over readUint.
|
|
uint64_t | isc::util::readUint64 (void const *const buffer, size_t const length) |
| uint16_t wrapper over readUint.
|
|
template<typename uint_t > |
uint8_t * | isc::util::writeUint (uint_t const value, void *const buffer, size_t const length) |
| Write the given unsigned integer to the given buffer.
|
|
uint8_t * | isc::util::writeUint16 (uint16_t const value, void *const buffer, size_t const length) |
| uint16_t wrapper over writeUint.
|
|
uint8_t * | isc::util::writeUint32 (uint32_t const value, void *const buffer, size_t const length) |
| uint32_t wrapper over writeUint.
|
|
uint8_t * | isc::util::writeUint64 (uint64_t const value, void *const buffer, size_t const length) |
| uint64_t wrapper over writeUint.
|
|