1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 02:46:10 -04:00
v2fly/transport/internet/http/config.proto

23 lines
790 B
Protocol Buffer
Raw Normal View History

2018-03-01 07:16:52 -05:00
syntax = "proto3";
package v2ray.core.transport.internet.http;
option csharp_namespace = "V2Ray.Core.Transport.Internet.Http";
option go_package = "github.com/v2fly/v2ray-core/v5/transport/internet/http";
2018-03-01 07:16:52 -05:00
option java_package = "com.v2ray.core.transport.internet.http";
option java_multiple_files = true;
import "common/protoext/extensions.proto";
2021-03-01 15:38:29 -05:00
import "transport/internet/headers/http/config.proto";
2018-03-01 07:16:52 -05:00
message Config {
option (v2ray.core.common.protoext.message_opt).type = "transport";
option (v2ray.core.common.protoext.message_opt).short_name = "h2";
option (v2ray.core.common.protoext.message_opt).transport_original_name = "http";
2018-03-01 07:16:52 -05:00
repeated string host = 1;
string path = 2;
2021-03-01 15:40:56 -05:00
string method = 3;
2021-03-01 15:38:29 -05:00
repeated v2ray.core.transport.internet.headers.http.Header header = 4;
2018-03-01 07:16:52 -05:00
}