SSH server library, fork of Hackage one but hoping to get patches upstream

[[ 🗃 ^6r4Ao ssh ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Changes]

Clone

HTTPS: darcs clone https://vervis.peers.community/repos/6r4Ao

SSH: darcs clone USERNAME@vervis.peers.community:6r4Ao

Tags

TODO

src / Network / SSH /

Channel.hs

module Network.SSH.Channel
    ( -- * Monad Transformer
      ChannelT ()
      -- * Configuration
    , ChannelRequest (..)
    , ChannelConfig (..)
    , defaultChannelConfig
      -- * Auth access
    , AuthDetails (..)
    , askAuthDetails
      -- * Messages
    , channelError
    , channelMessage
    , channelFail
    , channelSuccess
    , channelDone
      -- * Request Handler Utilities
    , spawnProcess
    , spawnProcessWait
    )
where

import Network.SSH.Internal.Channel
[See repo JSON]