Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IHttpSocketConnectOptions.ts
1028 views
1
export default interface IHttpSocketConnectOptions {
2
host: string;
3
port: string;
4
isSsl: boolean;
5
keepAlive?: boolean;
6
debug?: boolean;
7
servername?: string;
8
isWebsocket?: boolean;
9
keylogPath?: string;
10
proxyUrl?: string;
11
}
12
13