Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion wireguard/gateway.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ message Configuration {
repeated Peer peers = 5;
repeated string addresses = 6;
optional enterprise.firewall.FirewallConfig firewall_config = 7;
optional uint32 mtu = 8;
optional uint32 fwmark = 9;
}

enum UpdateType {
Expand Down Expand Up @@ -88,5 +90,5 @@ message CoreRequest {
* so requests and responses are actually send in reverse.
*/
service Gateway {
rpc Bidi (stream CoreResponse) returns (stream CoreRequest);
rpc Bidi(stream CoreResponse) returns (stream CoreRequest);
}