File: Control.hs

package info (click to toggle)
haskell-network-control 0.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 88 kB
  • sloc: haskell: 355; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
-- | Common parts to control network protocols.
--   This library assumes that 'Int' is 64bit.
module Network.Control (
    module Network.Control.Flow,
    module Network.Control.LRUCache,
    module Network.Control.Rate,
) where

import Network.Control.Flow
import Network.Control.LRUCache
import Network.Control.Rate