mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 10:47:48 -05:00
11 lines
262 B
Protocol Buffer
11 lines
262 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 Config {
|
||
|
bool connection_reuse = 1;
|
||
|
string path = 2;
|
||
|
}
|