1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 06:14:23 -04:00
v2fly/proxy/http/config.proto

17 lines
372 B
Protocol Buffer
Raw Normal View History

2016-08-25 15:55:49 -04:00
syntax = "proto3";
2016-09-26 09:14:16 -04:00
package v2ray.core.proxy.http;
2016-12-22 18:24:28 -05:00
option csharp_namespace = "V2Ray.Core.Proxy.Http";
2016-08-25 15:55:49 -04:00
option go_package = "http";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.proxy.http";
option java_outer_classname = "ConfigProto";
2016-08-25 15:55:49 -04:00
// Config for HTTP proxy server.
message ServerConfig {
uint32 timeout = 1;
}
// ClientConfig for HTTP proxy client.
message ClientConfig {
}