1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-20 20:24:15 -04:00
v2fly/proxy/http/config.proto

17 lines
362 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";
2017-02-03 17:15:10 -05:00
option java_multiple_files = true;
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 {
}