mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
15 lines
409 B
Protocol Buffer
15 lines
409 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.transport.internet.http;
|
|
option csharp_namespace = "Xray.Transport.Internet.Http";
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/http";
|
|
option java_package = "com.xray.transport.internet.http";
|
|
option java_multiple_files = true;
|
|
|
|
message Config {
|
|
repeated string host = 1;
|
|
string path = 2;
|
|
int32 idle_timeout = 3;
|
|
int32 health_check_timeout = 4;
|
|
}
|