config.proto 229 B

1234567891011121314
  1. syntax = "proto3";
  2. package com.v2ray.core.proxy.http;
  3. option go_package = "http";
  4. // Config for HTTP proxy server.
  5. message ServerConfig {
  6. uint32 timeout = 1;
  7. }
  8. // ClientConfig for HTTP proxy client.
  9. message ClientConfig {
  10. }