[][src]Struct shadowsocks::relay::socks4::HandshakeRequest

pub struct HandshakeRequest {
    pub cd: Command,
    pub dst: Address,
    pub user_id: Vec<u8>,
}

Handshake Request

The client connects to the SOCKS server and sends a CONNECT/BIND request when
it wants to establish a connection to an application server. The client
includes in the request packet the IP address and the port number of the
destination host, and userid, in the following format.

                +----+----+----+----+----+----+----+----+----+----+....+----+
                | VN | CD | DSTPORT |      DSTIP        | USERID       |NULL|
                +----+----+----+----+----+----+----+----+----+----+....+----+
 # of bytes:	   1    1      2              4           variable       1

VN is the SOCKS protocol version number and should be 4. CD is the
SOCKS command code and should be 1 for CONNECT request, 2 for BIND request. NULL is a byte
of all zero bits.

Fields

cd: Commanddst: Addressuser_id: Vec<u8>

Implementations

impl HandshakeRequest[src]

pub async fn read_from<R, '_>(r: &'_ mut R) -> Result<HandshakeRequest> where
    R: AsyncBufRead + Unpin
[src]

Read from a reader

pub fn write_to_buf<B: BufMut>(&self, buf: &mut B)[src]

Writes to buffer

pub fn serialized_len(&self) -> usize[src]

Length in bytes

Trait Implementations

impl Clone for HandshakeRequest[src]

impl Debug for HandshakeRequest[src]

Auto Trait Implementations

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> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,