config.proto 393 B

123456789101112131415161718192021
  1. syntax = "proto3";
  2. package com.v2ray.core.proxy.vmess.inbound;
  3. option go_package = "inbound";
  4. import "v2ray.com/core/common/protocol/user.proto";
  5. message DetourConfig {
  6. string to = 1;
  7. }
  8. message DefaultConfig {
  9. uint32 alter_id = 1;
  10. uint32 level = 2;
  11. }
  12. message Config {
  13. repeated com.v2ray.core.common.protocol.User user = 1;
  14. DefaultConfig default = 2;
  15. DetourConfig detour = 3;
  16. }