teleshell-0.1.0.0: Telnet client and other things

Safe HaskellNone
LanguageHaskell2010

Network.Teleshell

Synopsis

Documentation

runSocketPipe :: Socket -> Pipe ByteString ByteString IO () -> IO () Source #

The socket must already be connected.

runSocketPipeMaybe :: Socket -> Pipe ByteString ByteString (MaybeT IO) a -> IO (Maybe a) Source #

The socket must already be connected.

runSocketPipeEither :: Socket -> Pipe ByteString ByteString (ExceptT TeleshellError IO) a -> IO (Either TeleshellError a) Source #

The socket must already be connected.