mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-07-06 19:58:47 +00:00
345c76f9a8
https://github.com/XTLS/Xray-core/pull/6360#issuecomment-4780311547 Closes https://github.com/XTLS/Xray-core/issues/6314 --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: LjhAUMEM <llnu14702@gmail.com>
22 lines
628 B
Protocol Buffer
22 lines
628 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.transport.internet.hysteria;
|
|
option csharp_namespace = "Xray.Transport.Internet.Hysteria";
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/hysteria";
|
|
option java_package = "com.xray.transport.internet.hysteria";
|
|
option java_multiple_files = true;
|
|
|
|
message Config {
|
|
reserved 1;
|
|
string auth = 2;
|
|
|
|
int64 udp_idle_timeout = 3;
|
|
string masq_type = 4;
|
|
string masq_file = 5;
|
|
string masq_url = 6;
|
|
bool masq_url_rewrite_host = 7;
|
|
bool masq_url_insecure = 8;
|
|
string masq_string = 9;
|
|
map<string, string> masq_string_headers = 10;
|
|
int32 masq_string_status_code = 11;
|
|
} |