v2ray-core/transport/internet/ws/config.proto

18 lines
441 B
Protocol Buffer
Raw Normal View History

2016-10-02 21:43:58 +00:00
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";
2016-10-17 12:35:13 +00:00
message ConnectionReuse {
bool enable = 1;
}
2016-10-02 21:43:58 +00:00
message Config {
2016-10-18 13:31:39 +00:00
// Whether or not to reuse WebSocket connections.
2016-10-17 12:35:13 +00:00
ConnectionReuse connection_reuse = 1;
2016-10-18 13:31:39 +00:00
// URL path to the WebSocket service. Empty value means root(/).
2016-10-02 21:43:58 +00:00
string path = 2;
}