[][src]Struct basic_tcp_proxy::TcpProxy

pub struct TcpProxy {
    pub forward_thread: JoinHandle<()>,
}

TcpProxy runs one thread looping to accept new connections and then two separate threads per connection for writing to each end

Fields

forward_thread: JoinHandle<()>

The handle for the outer thread, accepting new connections

Implementations

impl TcpProxy[src]

pub fn new(
    listen_port: u16,
    proxy_to: SocketAddr
) -> Result<Self, Box<dyn Error>>
[src]

Create a new TCP proxy, binding to listen_port and forwarding and receiving traffic from proxy_to

Auto Trait Implementations

impl !RefUnwindSafe for TcpProxy

impl Send for TcpProxy

impl Sync for TcpProxy

impl Unpin for TcpProxy

impl !UnwindSafe for TcpProxy

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.