1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-16 04:35:24 +00:00
v2fly/transport/internet/http/config.proto
2022-01-02 15:16:23 +00:00

17 lines
522 B
Protocol Buffer

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";
option java_package = "com.v2ray.core.transport.internet.http";
option java_multiple_files = true;
import "transport/internet/headers/http/config.proto";
message Config {
repeated string host = 1;
string path = 2;
string method = 3;
repeated v2ray.core.transport.internet.headers.http.Header header = 4;
}