config.proto 625 B

123456789101112131415
  1. syntax = "proto3";
  2. package v2ray.core.transport.internet.domainsocket;
  3. option csharp_namespace = "V2Ray.Core.Transport.Internet.DomainSocket";
  4. option go_package = "domainsocket";
  5. option java_package = "com.v2ray.core.transport.internet.domainsocket";
  6. option java_multiple_files = true;
  7. message Config {
  8. // Path of the domain socket. This overrides the IP/Port parameter from upstream caller.
  9. string path = 1;
  10. // Abstract speicifies whether to use abstract namespace or not.
  11. // Traditionally Unix domain socket is file system based. Abstract domain socket can be used without acquiring file lock.
  12. bool abstract = 2;
  13. }