Skip to content

Commit

Permalink
comments for protos.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarienRaymond committed Jan 4, 2018
1 parent 9ccdf67 commit 24395a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions app/proxyman/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ message ReceiverConfig {
}

message InboundHandlerConfig {
// Tag of the inbound handler.
string tag = 1;
// Settings for how this inbound proxy is handled. Must be ReceiverConfig above.
v2ray.core.common.serial.TypedMessage receiver_settings = 2;
// Settings for inbound proxy. Must be one of the inbound proxies.
v2ray.core.common.serial.TypedMessage proxy_settings = 3;
}

Expand All @@ -80,10 +83,15 @@ message SenderConfig {
}

message OutboundHandlerConfig {
// Tag of this outbound handler.
string tag = 1;
// Settings for how to dial connection for this outbound handler. Must be SenderConfig above.
v2ray.core.common.serial.TypedMessage sender_settings = 2;
// Settings for this outbound proxy. Must be one of the outbound proxies.
v2ray.core.common.serial.TypedMessage proxy_settings = 3;
// If not zero, this outbound will be expired in seconds. Not used for now.
int64 expire = 4;
// Comment of this outbound handler. Not used for now.
string comment = 5;
}

Expand Down
2 changes: 1 addition & 1 deletion app/router/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ message Config {
}
DomainStrategy domain_strategy = 1;
repeated RoutingRule rule = 2;
}
}
2 changes: 1 addition & 1 deletion config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ enum ConfigFormat {
JSON = 1;
}

// Master config of V2Ray. V2Ray Core takes this config as input and functions accordingly.
// Master config of V2Ray. V2Ray takes this config as input and functions accordingly.
message Config {
// Inbound handler configurations. Must have at least one item.
repeated v2ray.core.app.proxyman.InboundHandlerConfig inbound = 1;
Expand Down

0 comments on commit 24395a3

Please sign in to comment.