mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
553 B
19 lines
553 B
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;
|
|
|
|
import "transport/internet/headers/http/config.proto";
|
|
|
|
message Config {
|
|
repeated string host = 1;
|
|
string path = 2;
|
|
int32 idle_timeout = 3;
|
|
int32 health_check_timeout = 4;
|
|
string method = 5;
|
|
repeated xray.transport.internet.headers.http.Header header = 6;
|
|
}
|