pub struct LocalConfig {
    pub addr: Option<ServerAddr>,
    pub protocol: ProtocolType,
    pub mode: Mode,
    pub udp_addr: Option<ServerAddr>,
    pub forward_addr: Option<Address>,
    pub tcp_redir: RedirType,
    pub udp_redir: RedirType,
    pub local_dns_addr: Option<NameServerAddr>,
    pub remote_dns_addr: Option<Address>,
    pub ipv6_only: bool,
}
Expand description

Local server configuration

Fields

addr: Option<ServerAddr>

Listen address for local servers

protocol: ProtocolTypemode: Mode

Mode Uses global mode if not specified

udp_addr: Option<ServerAddr>

UDP server bind address. Uses addr if not specified

Resolving Android’s issue: shadowsocks/shadowsocks-android#2571

forward_addr: Option<Address>

Destination address for tunnel

tcp_redir: RedirType

TCP Transparent Proxy type

udp_redir: RedirType

UDP Transparent Proxy type

local_dns_addr: Option<NameServerAddr>

Local DNS’s address

Sending DNS query directly to this address

remote_dns_addr: Option<Address>

Remote DNS’s address

Sending DNS query through proxy to this address

ipv6_only: bool

Set IPV6_V6ONLY for listener socket

Implementations

Create a new LocalConfig

Create a new LocalConfig with listen address

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more