streaming-pcap-1.1.0: Network/Pcap/Streaming.hs
-- |
-- Module : Network.Pcap.Streaming
-- Copyright : (c) Colin Woodbury, 2018
-- License : BSD3
-- Maintainer: Colin Woodbury <colingw@gmail.com>
--
-- A streaming interface to the <http://hackage.haskell.org/package/pcap-0.4.5.2 pcap>
-- Haskell library, which itself is a binding to /libpcap/. Humbly adapted from
-- <http://hackage.haskell.org/package/pcap-conduit pcap-conduit> by Austin Seipp.
module Network.Pcap.Streaming
( Packet(..)
, PktHdr(..)
, offline
, online
) where
import qualified Data.Attoparsec.ByteString.Streaming as A
import qualified Data.ByteString.Streaming as Q
import Data.Int (Int64)
import Network.Pcap
import Network.Pcap.Streaming.Internal
import Streaming
import qualified Streaming.Prelude as P
---
-- | Read `Packet`s from some file dump.
offline :: FilePath -> Stream (Of Packet) (ResourceT IO) ()
offline = void . A.parsed packetP . Q.drop 24 . Q.readFile
-- | Read `Packet`s from some network device. See `Network.Pcap.openLive`
-- for a description of each argument.
online :: String -> Int -> Bool -> Int64 -> Stream (Of Packet) IO ()
online n s p t = lift (openLive n s p t) >>= packets
packets :: PcapHandle -> Stream (Of Packet) IO ()
packets h = do
(hdr,bs) <- lift (nextBS h)
if hdrCaptureLength hdr == 0 then pure () else P.yield (Packet hdr bs) *> packets h