]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - src/Graylog/UDP.hs
Added testing for UDP method.
[github/fretlink/haskell-graylog.git] / src / Graylog / UDP.hs
CommitLineData
15981d57
A
1module Graylog.UDP
2 ( Graylog (..)
3 , sendLog
4
5 , module Graylog.Gelf
6 ) where
7
8import Network.Socket
9
10import Graylog.Gelf
11
12data Graylog
13 = Graylog
14 { _graylogHost :: String
15 , _graylogPort :: String
16 }
17
18sendLog :: Graylog -> GELF -> IO ()
19sendLog glog msg = undefined