mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
13 lines
440 B
Go
13 lines
440 B
Go
|
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"`
|
||
|
}
|