v2ray-core/proxy/http/config.proto

17 lines
362 B
Protocol Buffer
Raw Normal View History

2016-08-25 19:55:49 +00:00
syntax = "proto3";
2016-09-26 13:14:16 +00:00
package v2ray.core.proxy.http;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.Proxy.Http";
2016-08-25 19:55:49 +00:00
option go_package = "http";
2016-09-26 13:14:16 +00:00
option java_package = "com.v2ray.core.proxy.http";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-08-25 19:55:49 +00:00
// Config for HTTP proxy server.
message ServerConfig {
uint32 timeout = 1;
}
// ClientConfig for HTTP proxy client.
message ClientConfig {
}