1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00
v2fly/transport/internet/websocket/config.proto
2017-02-03 23:15:10 +01:00

19 lines
521 B
Protocol Buffer

syntax = "proto3";
package v2ray.core.transport.internet.websocket;
option csharp_namespace = "V2Ray.Core.Transport.Internet.Websocket";
option go_package = "websocket";
option java_package = "com.v2ray.core.transport.internet.websocket";
option java_multiple_files = true;
message ConnectionReuse {
bool enable = 1;
}
message Config {
// Whether or not to reuse WebSocket connections.
ConnectionReuse connection_reuse = 1;
// URL path to the WebSocket service. Empty value means root(/).
string path = 2;
}