This commit is contained in:
Hellojack
2022-06-09 11:44:28 +08:00
committed by GitHub
parent 32cfe02715
commit 860b70bfa6
2 changed files with 5 additions and 1 deletions

View File

@@ -40,6 +40,10 @@ public class OutboundConfiguration
public object[] servers { get; set; } public object[] servers { get; set; }
public string address { get; set; }
public ushort port { get; set; }
public string packetEncoding { get; set; } public string packetEncoding { get; set; }
public string plugin { get; set; } public string plugin { get; set; }

View File

@@ -8,7 +8,7 @@ public class WireGuardServer : Server
public override string MaskedData() public override string MaskedData()
{ {
return $"{LocalAddress} + {MTU}"; return $"{LocalAddresses} + {MTU}";
} }
/// <summary> /// <summary>