Can now control SSL cert verfication from in-engine
This commit is contained in:
@@ -11,7 +11,8 @@
|
||||
|
||||
namespace drv {
|
||||
|
||||
void split_host_port(std::string_view target, std::string &host, std::string &port);
|
||||
void split_target(std::string_view target, std::string &cert, std::string &host, std::string &port);
|
||||
|
||||
|
||||
std::vector<std::string> parse_control_lst(std::string_view ctrl);
|
||||
|
||||
@@ -58,7 +59,7 @@ public:
|
||||
//
|
||||
const eng::vector<int> &drv_get_listen_ports() const { return e_->drv_get_listen_ports(); }
|
||||
const eng::vector<int> &drv_get_new_outgoing() const { return e_->drv_get_new_outgoing(); }
|
||||
const eng::string &drv_get_target(int chid) const { return e_->drv_get_target(chid); }
|
||||
std::string_view drv_get_target(int chid) const { return e_->drv_get_target(chid); }
|
||||
bool drv_outgoing_empty(int chid) const { return e_->drv_outgoing_empty(chid); }
|
||||
bool drv_get_channel_released(int chid) const { return e_->drv_get_channel_released(chid); }
|
||||
std::string_view drv_peek_outgoing(int chid) const { return e_->drv_peek_outgoing(chid); }
|
||||
|
||||
Reference in New Issue
Block a user