github.com/xmplusdev/xray-core@v1.8.10/transport/internet/http/config.proto (about) 1 syntax = "proto3"; 2 3 package xray.transport.internet.http; 4 option csharp_namespace = "Xray.Transport.Internet.Http"; 5 option go_package = "github.com/xmplusdev/xray-core/transport/internet/http"; 6 option java_package = "com.xray.transport.internet.http"; 7 option java_multiple_files = true; 8 9 import "transport/internet/headers/http/config.proto"; 10 11 message Config { 12 repeated string host = 1; 13 string path = 2; 14 int32 idle_timeout = 3; 15 int32 health_check_timeout = 4; 16 string method = 5; 17 repeated xray.transport.internet.headers.http.Header header = 6; 18 }