| 1234567891011121314151617181920212223242526272829303132 |
- package option
- import (
- "net/netip"
- "github.com/sagernet/sing/common/json/badoption"
- )
- type WireGuardOutboundOptions struct {
- DialerOptions
- SystemInterface bool `json:"system_interface,omitempty"`
- GSO bool `json:"gso,omitempty"`
- InterfaceName string `json:"interface_name,omitempty"`
- LocalAddress badoption.Listable[netip.Prefix] `json:"local_address"`
- PrivateKey string `json:"private_key"`
- Peers []WireGuardPeer `json:"peers,omitempty"`
- ServerOptions
- PeerPublicKey string `json:"peer_public_key"`
- PreSharedKey string `json:"pre_shared_key,omitempty"`
- Reserved []uint8 `json:"reserved,omitempty"`
- Workers int `json:"workers,omitempty"`
- MTU uint32 `json:"mtu,omitempty"`
- Network NetworkList `json:"network,omitempty"`
- }
- type WireGuardPeer struct {
- ServerOptions
- PublicKey string `json:"public_key,omitempty"`
- PreSharedKey string `json:"pre_shared_key,omitempty"`
- AllowedIPs badoption.Listable[string] `json:"allowed_ips,omitempty"`
- Reserved []uint8 `json:"reserved,omitempty"`
- }
|