mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-19 10:56:06 -05:00
18 lines
441 B
Protocol Buffer
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;
|
|
} |