github.com/v2fly/v2ray-core/v5@v5.16.2-0.20240507031116-8191faa6e095/transport/internet/request/roundtripper/httprt/config.proto (about) 1 syntax = "proto3"; 2 3 package v2ray.core.transport.internet.request.roundtripper.httprt; 4 option csharp_namespace = "V2Ray.Core.Transport.Internet.Request.Roundtripper.httprt"; 5 option go_package = "github.com/v2fly/v2ray-core/v5/transport/internet/request/roundtripper/httprt"; 6 option java_package = "com.v2ray.core.transport.internet.request.roundtripper.httprt"; 7 option java_multiple_files = true; 8 9 import "common/protoext/extensions.proto"; 10 11 message ClientConfig { 12 option (v2ray.core.common.protoext.message_opt).type = "transport.request.roundtripper.client"; 13 option (v2ray.core.common.protoext.message_opt).short_name = "httprt"; 14 15 HTTPConfig http = 1; 16 } 17 18 message ServerConfig { 19 option (v2ray.core.common.protoext.message_opt).type = "transport.request.roundtripper.server"; 20 option (v2ray.core.common.protoext.message_opt).short_name = "httprt"; 21 HTTPConfig http = 1; 22 bool no_decoding_session_tag = 2; 23 } 24 25 message HTTPConfig { 26 string path = 1; 27 string urlPrefix = 2; 28 }