1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 15:37:33 -05:00

21 lines
484 B
Protocol Buffer
Raw Normal View History

2016-10-02 23:43:58 +02:00
syntax = "proto3";
2016-12-23 00:30:46 +01: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";
2017-02-03 23:15:10 +01:00
option java_multiple_files = true;
2016-10-02 23:43:58 +02:00
2017-10-13 23:54:04 +08:00
message Header {
string key = 1;
string value = 2;
2016-10-17 14:35:13 +02:00
}
2016-10-02 23:43:58 +02:00
message Config {
reserved 1;
2016-10-18 15:31:39 +02:00
// URL path to the WebSocket service. Empty value means root(/).
2016-10-02 23:43:58 +02:00
string path = 2;
2017-10-13 23:54:04 +08:00
repeated Header header = 3;
2016-10-02 23:43:58 +02:00
}