34 lines
637 B
TypeScript
34 lines
637 B
TypeScript
/**
|
|
* Defines possible values for the protocol of a {@link TunnelPort}.
|
|
*/
|
|
export declare enum TunnelProtocol {
|
|
/**
|
|
* The protocol is automatically detected. (TODO: Define detection semantics.)
|
|
*/
|
|
Auto = "auto",
|
|
/**
|
|
* Unknown TCP protocol.
|
|
*/
|
|
Tcp = "tcp",
|
|
/**
|
|
* Unknown UDP protocol.
|
|
*/
|
|
Udp = "udp",
|
|
/**
|
|
* SSH protocol.
|
|
*/
|
|
Ssh = "ssh",
|
|
/**
|
|
* Remote desktop protocol.
|
|
*/
|
|
Rdp = "rdp",
|
|
/**
|
|
* HTTP protocol.
|
|
*/
|
|
Http = "http",
|
|
/**
|
|
* HTTPS protocol.
|
|
*/
|
|
Https = "https"
|
|
}
|
|
//# sourceMappingURL=tunnelProtocol.d.ts.map
|