Asio Extensions
Additional functionality built on top of (Boost.)Asio
asioext::socks Namespace Reference

Namespaces

 detail
 

Enumerations

enum  command : uint8_t { command::connect = 1, command::bind = 2, command::bind_udp = 3 }
 SOCKS commands. More...
 
enum  version : uint8_t { version::v4, version::v5 }
 SOCKS versions. More...
 
enum  auth_method : uint8_t { auth_method::none = 0, auth_method::gssapi = 1, auth_method::username_password = 2, auth_method::no_acceptable = 0xff }
 SOCKS login authentication methods. More...
 

Functions

template<typename Socket , typename DynamicBuffer , typename GreetHandler >
void_or_deduced async_greet (Socket &socket, const auth_method *auth_methods, std::size_t num_auth_methods, DynamicBuffer &&buffer, GreetHandler &&handler)
 Asynchronously perform a SOCKS 5 greeting with the remote SOCKS server. More...
 
template<typename Socket , typename DynamicBuffer , typename LoginHandler >
void_or_deduced async_login (Socket &socket, const std::string &username, const std::string &password, DynamicBuffer &&buffer, LoginHandler &&handler)
 Asynchronously attempt a login on the remote SOCKS 5 server. More...
 
template<typename Socket , typename DynamicBuffer , typename ExecuteHandler >
void_or_deduced async_execute (Socket &socket, command cmd, const asio::ip::tcp::endpoint &remote, DynamicBuffer &&buffer, ExecuteHandler &&handler)
 Asynchronously attempt to execute the given command. More...
 
template<typename Socket , typename DynamicBuffer , typename ExecuteHandler >
void_or_deduced async_execute (Socket &socket, command cmd, const std::string &remote, uint16_t port, DynamicBuffer &&buffer, ExecuteHandler &&handler)
 Asynchronously attempt to execute the given command. More...
 
enum  error {
  error::none = 0, error::invalid_version, error::no_acceptable_auth_method, error::invalid_auth_version,
  error::login_failed, error::command_not_supported
}
 SOCKS-specific error codes. More...
 
const error_categoryget_error_category () noexcept
 Get the error_category for error. More...
 
error_code make_error_code (error e) noexcept