v2ray-core/proxy/http/config.go

11 lines
152 B
Go
Raw Normal View History

2015-12-14 16:26:29 +00:00
package http
2016-05-29 14:46:31 +00:00
// Config for HTTP proxy server.
type Config struct {
2016-07-10 13:34:14 +00:00
Timeout int
2015-12-14 16:26:29 +00:00
}
2016-05-28 11:44:11 +00:00
2016-05-29 14:46:31 +00:00
// ClientConfig for HTTP proxy client.
2016-05-28 11:44:11 +00:00
type ClientConfig struct {
}