1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-09 06:44:30 -04:00
v2fly/transport/internet/ws/config.proto
Darien Raymond 751a105324
comments
2016-10-18 15:31:39 +02:00

18 lines
441 B
Protocol Buffer

syntax = "proto3";
package v2ray.core.transport.internet.ws;
option go_package = "ws";
option java_package = "com.v2ray.core.transport.internet.ws";
option java_outer_classname = "ConfigProto";
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;
}