Lines Matching +full:host +full:- +full:side
4 * SPDX-License-Identifier: Apache-2.0
31 SSLv3 = 2, // Supports SSLv3 only - also horribly insecure!
70 * Set whether to use client or server side SSL handshake protocol.
72 * @param flag Use server side handshake protocol if true.
142 * @param host Remote host name
145 TSSLSocket(std::shared_ptr<SSLContext> ctx, std::string host, int port,
150 * @param host Remote host name
153 TSSLSocket(std::shared_ptr<SSLContext> ctx, std::string host, int port,
249 * @param host Remote host to be connected to
252 virtual std::shared_ptr<TSSLSocket> createSocket(const std::string &host, int port);
256 * @param host Remote host to be connected to
260 createSocket(const std::string &host, int port,
385 * Callback interface for access control. It's meant to verify the remote host.
394 DENY = -1, // deny access
422 * @param host Client mode: host name returned by TSocket::getHost()
423 * Server mode: host name returned by TSocket::getPeerHost()
430 virtual Decision verify(const std::string & /* host */, const char * /* name */, in verify()
458 Decision verify(const std::string &host, const char *name, int size) noexcept override;