|
activemq-cpp-3.9.5
|
Factory class interface for a SocketFactory that can create SSLSocket objects. More...
#include <src/main/decaf/net/ssl/SSLSocketFactory.h>

Public Member Functions | |
| virtual | ~SSLSocketFactory () |
| virtual std::vector< std::string > | getDefaultCipherSuites ()=0 |
| Returns the list of cipher suites which are enabled by default. | |
| virtual std::vector< std::string > | getSupportedCipherSuites ()=0 |
| Returns the names of the cipher suites which could be enabled for use on an SSL connection. | |
| virtual Socket * | createSocket (Socket *socket, std::string host, int port, bool autoClose)=0 |
| Returns a socket layered over an existing socket connected to the named host, at the given port. | |
| virtual Socket * | createSocket () |
| Creates an unconnected Socket object. | |
| virtual Socket * | createSocket (const InetAddress *host, int port)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
| virtual Socket * | createSocket (const InetAddress *host, int port, const InetAddress *ifAddress, int localPort)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
| virtual Socket * | createSocket (const std::string &host, int port)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
| virtual Socket * | createSocket (const std::string &host, int port, const InetAddress *ifAddress, int localPort)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
Public Member Functions inherited from decaf::net::SocketFactory | |
| virtual | ~SocketFactory () |
| virtual Socket * | createSocket () |
| Creates an unconnected Socket object. | |
| virtual Socket * | createSocket (const InetAddress *host, int port)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
| virtual Socket * | createSocket (const InetAddress *host, int port, const InetAddress *ifAddress, int localPort)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
| virtual Socket * | createSocket (const std::string &host, int port)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
| virtual Socket * | createSocket (const std::string &host, int port, const InetAddress *ifAddress, int localPort)=0 |
| Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory. | |
Static Public Member Functions | |
| static SocketFactory * | getDefault () |
| Returns the current default SSL SocketFactory, the factory is returned as a pointer however the caller does not own this pointer and should not delete it. | |
Static Public Member Functions inherited from decaf::net::SocketFactory | |
| static SocketFactory * | getDefault () |
| Returns an pointer to the default SocketFactory for this Application, there is only one default SocketFactory per application, the pointer returned by this method is owned by the SocketFactory class and in not to be deleted by the caller. | |
Protected Member Functions | |
| SSLSocketFactory () | |
Protected Member Functions inherited from decaf::net::SocketFactory | |
| SocketFactory () | |
Factory class interface for a SocketFactory that can create SSLSocket objects.
|
protected |
|
virtual |
|
virtual |
Creates an unconnected Socket object.
| IOException | if the Socket cannot be created. |
Reimplemented from decaf::net::SocketFactory.
|
virtual |
Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory.
| host | The host to connect the socket to. |
| port | The port on the remote host to connect to. |
| IOException | if an I/O error occurs while creating the Socket object. |
| UnknownHostException | if the host name is not known. |
Implements decaf::net::SocketFactory.
|
virtual |
Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory.
The Socket will be bound to the specified local address and port.
| host | The host to connect the socket to. |
| port | The port on the remote host to connect to. |
| ifAddress | The address on the local machine to bind the Socket to. |
| localPort | The local port to bind the Socket to. |
| IOException | if an I/O error occurs while creating the Socket object. |
| UnknownHostException | if the host name is not known. |
Implements decaf::net::SocketFactory.
|
virtual |
Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory.
| host | The host name or IP address to connect the socket to. |
| port | The port on the remote host to connect to. |
| IOException | if an I/O error occurs while creating the Socket object. |
| UnknownHostException | if the host name is not known. |
Implements decaf::net::SocketFactory.
|
virtual |
Creates a new Socket object and connects it to the specified remote host and port using the configuration of this SocketFactory.
| host | The host name or IP address to connect the socket to. |
| port | The port on the remote host to connect to. |
| ifAddress | The address on the local machine to bind the Socket to. |
| localPort | The local port to bind the Socket to. |
| IOException | if an I/O error occurs while creating the Socket object. |
| UnknownHostException | if the host name is not known. |
Implements decaf::net::SocketFactory.
|
pure virtual |
Returns a socket layered over an existing socket connected to the named host, at the given port.
This constructor can be used when tunneling SSL through a proxy or when negotiating the use of SSL over an existing socket. The host and port refer to the logical peer destination. This socket is configured using the socket options established for this factory.
| socket | The existing socket to layer over. |
| host | The server host the original Socket is connected to. |
| port | The server port the original Socket is connected to. |
| autoClose | Should the layered over Socket be closed when the topmost socket is closed. |
| IOException | if an I/O exception occurs while performing this operation. |
| UnknownHostException | if the host is unknown. |
Implemented in decaf::internal::net::ssl::DefaultSSLSocketFactory, and decaf::internal::net::ssl::openssl::OpenSSLSocketFactory.
|
static |
Returns the current default SSL SocketFactory, the factory is returned as a pointer however the caller does not own this pointer and should not delete it.
This method returns SSLContext::getDefault()->getSocketFactory(). If that call fails, a non-functional factory is returned.
|
pure virtual |
Returns the list of cipher suites which are enabled by default.
Unless a different list is enabled, handshaking on an SSL connection will use one of these cipher suites. The minimum quality of service for these defaults requires confidentiality protection and server authentication (that is, no anonymous cipher suites).
Implemented in decaf::internal::net::ssl::DefaultSSLSocketFactory, and decaf::internal::net::ssl::openssl::OpenSSLSocketFactory.
|
pure virtual |
Returns the names of the cipher suites which could be enabled for use on an SSL connection.
Normally, only a subset of these will actually be enabled by default, since this list may include cipher suites which do not meet quality of service requirements for those defaults. Such cipher suites are useful in specialized applications.
Implemented in decaf::internal::net::ssl::DefaultSSLSocketFactory, and decaf::internal::net::ssl::openssl::OpenSSLSocketFactory.