Kea 2.7.5
|
#include <config.h>
#include <util/encode/encode.h>
#include <util/str.h>
#include <cstddef>
#include <cstdint>
#include <exception>
#include <iomanip>
#include <regex>
#include <sstream>
#include <string>
#include <vector>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/constants.hpp>
#include <boost/algorithm/string/split.hpp>
Go to the source code of this file.
Classes | |
class | isc::util::str::StringSanitizerImpl |
Namespaces | |
namespace | isc |
Defines the logger used by the top-level component of kea-lfc. | |
namespace | isc::util |
namespace | isc::util::str |
Functions | |
void | isc::util::str::decodeColonSeparatedHexString (const std::string &hex_string, std::vector< uint8_t > &binary) |
Converts a string of hexadecimal digits with colons into a vector. | |
void | isc::util::str::decodeFormattedHexString (const std::string &hex_string, std::vector< uint8_t > &binary) |
Converts a formatted string of hexadecimal digits into a vector. | |
void | isc::util::str::decodeSeparatedHexString (const std::string &hex_string, const std::string &sep, std::vector< uint8_t > &binary) |
Converts a string of separated hexadecimal digits into a vector. | |
string | isc::util::str::dumpAsHex (const uint8_t *data, size_t length) |
Dumps a buffer of bytes as a string of hexadecimal digits. | |
bool | isc::util::str::isPrintable (const std::string &content) |
Check if a string is printable. | |
bool | isc::util::str::isPrintable (const std::vector< uint8_t > &content) |
Check if a byte vector is printable. | |
void | isc::util::str::lowercase (std::string &text) |
Convert string to lowercase. | |
vector< uint8_t > | isc::util::str::quotedStringToBinary (const std::string "ed_string) |
Converts a string in quotes into vector. | |
vector< string > | isc::util::str::tokens (const std::string &text, const std::string &delim=" \t\n", bool escape=false) |
Split string into tokens. | |
char | isc::util::str::toLower (char const chr) |
Convert character to lowercase. | |
char | isc::util::str::toUpper (char const chr) |
Convert character to uppercase. | |
string | isc::util::str::trim (const std::string &input) |
Trim leading and trailing spaces. | |
void | isc::util::str::uppercase (std::string &text) |
Convert string to uppercase. | |