mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-22 17:27:12 -05:00
14 lines
229 B
Protocol Buffer
14 lines
229 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package com.v2ray.core.proxy.http;
|
||
|
option go_package = "http";
|
||
|
|
||
|
// Config for HTTP proxy server.
|
||
|
message ServerConfig {
|
||
|
uint32 timeout = 1;
|
||
|
}
|
||
|
|
||
|
// ClientConfig for HTTP proxy client.
|
||
|
message ClientConfig {
|
||
|
|
||
|
}
|