2021-09-06 00:21:24 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package v2ray.core.proxy.http.simplified;
|
|
|
|
option csharp_namespace = "V2Ray.Core.Proxy.Http.Simplified";
|
2022-01-02 10:16:23 -05:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/proxy/http/simplified";
|
2021-09-06 00:21:24 -04:00
|
|
|
option java_package = "com.v2ray.core.proxy.http.simplified";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
|
|
|
import "common/protoext/extensions.proto";
|
|
|
|
import "common/net/address.proto";
|
|
|
|
|
|
|
|
message ServerConfig{
|
|
|
|
option (v2ray.core.common.protoext.message_opt).type = "inbound";
|
|
|
|
option (v2ray.core.common.protoext.message_opt).short_name = "http";
|
|
|
|
}
|
|
|
|
|
|
|
|
message ClientConfig {
|
|
|
|
option (v2ray.core.common.protoext.message_opt).type = "outbound";
|
|
|
|
option (v2ray.core.common.protoext.message_opt).short_name = "http";
|
|
|
|
|
|
|
|
v2ray.core.common.net.IPOrDomain address = 1;
|
|
|
|
uint32 port = 2;
|
|
|
|
}
|