2018-02-12 01:07:16 -05:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2018-04-09 11:09:24 -04:00
|
|
|
package v2ray.core.transport.internet.domainsocket;
|
|
|
|
option csharp_namespace = "V2Ray.Core.Transport.Internet.DomainSocket";
|
2017-10-31 03:52:40 -04:00
|
|
|
option go_package = "domainsocket";
|
2018-04-09 11:09:24 -04:00
|
|
|
option java_package = "com.v2ray.core.transport.internet.domainsocket";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
|
|
|
message Config {
|
|
|
|
// Path of the domain socket. This overrides the IP/Port parameter from upstream caller.
|
|
|
|
string path = 1;
|
|
|
|
// Abstract speicifies whether to use abstract namespace or not.
|
|
|
|
// Traditionally Unix domain socket is file system based. Abstract domain socket can be used without acquiring file lock.
|
|
|
|
bool abstract = 2;
|
2018-02-12 01:07:16 -05:00
|
|
|
}
|