2016-10-02 17:43:58 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2016-12-22 18:30:46 -05:00
|
|
|
package v2ray.core.transport.internet.websocket;
|
|
|
|
option csharp_namespace = "V2Ray.Core.Transport.Internet.Websocket";
|
|
|
|
option go_package = "websocket";
|
|
|
|
option java_package = "com.v2ray.core.transport.internet.websocket";
|
2016-10-02 17:43:58 -04:00
|
|
|
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;
|
|
|
|
}
|