| 123456789101112131415161718 |
- 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;
- }
|