From c4291c96beab42ab720008d996392c5bb1ea21c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Ciarcin=CC=81ski?= Date: Wed, 7 Jan 2026 12:46:35 +0100 Subject: [PATCH] Add MTU and FwMark to gateway.proto --- wireguard/gateway.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wireguard/gateway.proto b/wireguard/gateway.proto index 643371a..dc7f348 100644 --- a/wireguard/gateway.proto +++ b/wireguard/gateway.proto @@ -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 { @@ -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); }