socks-0.5.5: Socks proxy (version 5) implementation.

Safe HaskellNone
LanguageHaskell98

Network.Socks5.Lowlevel

Contents

Synopsis

Documentation

lowlevel types

data SocksHello #

Initial message sent by client with the list of authentification methods supported

Constructors

SocksHello 
Instances
Eq SocksHello # 
Instance details

Defined in Network.Socks5.Wire

Show SocksHello # 
Instance details

Defined in Network.Socks5.Wire

Serialize SocksHello # 
Instance details

Defined in Network.Socks5.Wire

data SocksHelloResponse #

Initial message send by server in return from Hello, with the server chosen method of authentication

newtype Connect #

Constructors

Connect SocksAddress 
Instances
Eq Connect # 
Instance details

Defined in Network.Socks5.Command

Methods

(==) :: Connect -> Connect -> Bool #

(/=) :: Connect -> Connect -> Bool #

Ord Connect # 
Instance details

Defined in Network.Socks5.Command

Show Connect # 
Instance details

Defined in Network.Socks5.Command

Command Connect # 
Instance details

Defined in Network.Socks5.Command

class Command a where #

Minimal complete definition

toRequest, fromRequest

lowlevel interface

sendSerialized :: Serialize a => Socket -> a -> IO () #