mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-05-01 01:44:15 +00:00
v1.0.0
This commit is contained in:
parent
47d23e9972
commit
c7f7c08ead
711 changed files with 82154 additions and 2 deletions
23
transport/internet/websocket/config.proto
Normal file
23
transport/internet/websocket/config.proto
Normal file
|
@ -0,0 +1,23 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package xray.transport.internet.websocket;
|
||||
option csharp_namespace = "Xray.Transport.Internet.Websocket";
|
||||
option go_package = "github.com/xtls/xray-core/v1/transport/internet/websocket";
|
||||
option java_package = "com.xray.transport.internet.websocket";
|
||||
option java_multiple_files = true;
|
||||
|
||||
message Header {
|
||||
string key = 1;
|
||||
string value = 2;
|
||||
}
|
||||
|
||||
message Config {
|
||||
reserved 1;
|
||||
|
||||
// URL path to the WebSocket service. Empty value means root(/).
|
||||
string path = 2;
|
||||
|
||||
repeated Header header = 3;
|
||||
|
||||
bool accept_proxy_protocol = 4;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue