direct.go 430 B

1234567891011121314
  1. package option
  2. type DirectInboundOptions struct {
  3. ListenOptions
  4. Network NetworkList `json:"network,omitempty"`
  5. OverrideAddress string `json:"override_address,omitempty"`
  6. OverridePort uint16 `json:"override_port,omitempty"`
  7. }
  8. type DirectOutboundOptions struct {
  9. OutboundDialerOptions
  10. OverrideAddress string `json:"override_address,omitempty"`
  11. OverridePort uint16 `json:"override_port,omitempty"`
  12. }