mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Add wireguard outbound and test
This commit is contained in:
parent
ca94a2ddcb
commit
d6a0aa7ccf
20 changed files with 724 additions and 55 deletions
12
option/wireguard.go
Normal file
12
option/wireguard.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package option
|
||||
|
||||
type WireGuardOutboundOptions struct {
|
||||
OutboundDialerOptions
|
||||
ServerOptions
|
||||
LocalAddress Listable[string] `json:"local_address"`
|
||||
PrivateKey string `json:"private_key"`
|
||||
PeerPublicKey string `json:"peer_public_key"`
|
||||
PreSharedKey string `json:"pre_shared_key,omitempty"`
|
||||
MTU uint32 `json:"mtu,omitempty"`
|
||||
Network NetworkList `json:"network,omitempty"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue