2022-02-17 20:02:08 -05:00
|
|
|
|
|
|
|
|
#ifndef DRIVER_UTIL_HPP
|
|
|
|
|
#define DRIVER_UTIL_HPP
|
|
|
|
|
|
2022-02-23 23:08:28 -05:00
|
|
|
#include "wrap-string.hpp"
|
|
|
|
|
#include "wrap-vector.hpp"
|
|
|
|
|
#include "wrap-map.hpp"
|
2022-02-18 03:59:21 -05:00
|
|
|
|
2022-02-17 20:02:08 -05:00
|
|
|
namespace drv {
|
|
|
|
|
|
2022-02-21 20:23:01 -05:00
|
|
|
void split_host_port(std::string_view target, std::string &host, std::string &port);
|
2022-02-17 20:02:08 -05:00
|
|
|
|
2022-02-21 20:23:01 -05:00
|
|
|
std::vector<std::string> parse_control_lst(std::string_view ctrl);
|
2022-02-18 03:59:21 -05:00
|
|
|
|
2022-02-17 20:02:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // DRIVER_UTIL_HPP
|