1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-24 06:04:27 -04:00
v2fly/transport/internet/ws/config.proto

18 lines
441 B
Protocol Buffer
Raw Normal View History

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