1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-02 23:35:40 -05:00
Files
v2fly/transport/internet/ws/config.proto

15 lines
321 B
Protocol Buffer
Raw Normal View History

2016-10-02 23:43:58 +02: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 14:35:13 +02:00
message ConnectionReuse {
bool enable = 1;
}
2016-10-02 23:43:58 +02:00
message Config {
2016-10-17 14:35:13 +02:00
ConnectionReuse connection_reuse = 1;
2016-10-02 23:43:58 +02:00
string path = 2;
}