AdapterSocketFactory
-
This is a very simple wrapper of a dict of type
[String: AdapterFactory].Use it as a normal dict.
See moreDeclaration
Swift
public class AdapterFactoryManager
-
The base class of adapter factory.
See moreDeclaration
Swift
open class AdapterFactory -
Factory building direct adapters.
See moreNote
This is needed since we need to identify direct adapter factory.Declaration
Swift
public class DirectAdapterFactory: AdapterFactory
-
Factory building adapter with proxy server host and port.
See moreDeclaration
Swift
open class ServerAdapterFactory: AdapterFactory
-
Factory building HTTP adapter.
See moreDeclaration
Swift
open class HTTPAdapterFactory: HTTPAuthenticationAdapterFactory
-
Factory building server adapter which requires authentication.
See moreDeclaration
Swift
open class HTTPAuthenticationAdapterFactory: ServerAdapterFactory
-
Factory building secured HTTP (HTTP with SSL) adapter.
See moreDeclaration
Swift
open class SecureHTTPAdapterFactory: HTTPAdapterFactory
-
Factory building Shadowsocks adapter.
See moreDeclaration
Swift
open class ShadowsocksAdapterFactory: ServerAdapterFactory
-
Factory building speed adapter.
See moreDeclaration
Swift
open class SpeedAdapterFactory: AdapterFactory
View on GitHub
AdapterSocketFactory Reference