10 lines
338 B
Swift
Executable File
10 lines
338 B
Swift
Executable File
import Foundation
|
|
|
|
/// This adapter connects to remote host through a HTTP proxy with SSL.
|
|
public class SecureHTTPAdapter: HTTPAdapter {
|
|
override public init(serverHost: String, serverPort: Int, auth: HTTPAuthentication?) {
|
|
super.init(serverHost: serverHost, serverPort: serverPort, auth: auth)
|
|
secured = true
|
|
}
|
|
}
|