Ark Server API (ASE) - Wiki
|
Namespaces | |
namespace | Impl |
Typedefs | |
typedef std::vector< SocketBuf > | SocketBufVec |
Functions | |
void | swap (NameValueCollection &nvc1, NameValueCollection &nvc2) |
void Net_API | initializeNetwork () |
void Net_API | uninitializeNetwork () |
std::string | htmlize (const std::string &str) |
void NetSSL_API | initializeSSL () |
void NetSSL_API | uninitializeSSL () |
typedef std::vector<SocketBuf> Poco::Net::SocketBufVec |
Definition at line 365 of file SocketDefs.h.
std::string Poco::Net::htmlize | ( | const std::string & | str | ) |
Uninitialize the network subsystem. (Windows only, no-op elsewhere)
void Net_API Poco::Net::initializeNetwork | ( | ) |
void NetSSL_API Poco::Net::initializeSSL | ( | ) |
|
inline |
void Net_API Poco::Net::uninitializeNetwork | ( | ) |
Initialize the network subsystem. (Windows only, no-op elsewhere)
void NetSSL_API Poco::Net::uninitializeSSL | ( | ) |
Initialize the NetSSL library, as well as the underlying OpenSSL libraries, by calling Poco::Crypto::OpenSSLInitializer::initialize().
Should be called before using any class from the NetSSL library. The NetSSL will be initialized automatically, through Poco::Crypto::OpenSSLInitializer instances or similar mechanisms when creating Context or SSLManager instances. However, it is recommended to call initializeSSL() in any case at application startup.
Can be called multiple times; however, for every call to initializeSSL(), a matching call to uninitializeSSL() must be performed.