aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Graylog/UDP.hs
diff options
context:
space:
mode:
authorAndrewRademacher <andrew.rademacher@smrxt.com>2016-02-24 20:39:47 -0600
committerAndrewRademacher <andrew.rademacher@smrxt.com>2016-02-24 20:39:47 -0600
commit2ff46fce748b0e813f13f03c034065092145a28d (patch)
tree1c70beb0058dba6c3edebe8b7efbfc73c8ea7350 /src/Graylog/UDP.hs
parent15981d57cda18a19fcb3012172a9f0994abfd97a (diff)
downloadhaskell-graylog-2ff46fce748b0e813f13f03c034065092145a28d.tar.gz
haskell-graylog-2ff46fce748b0e813f13f03c034065092145a28d.tar.zst
haskell-graylog-2ff46fce748b0e813f13f03c034065092145a28d.zip
Defined Graylog type to contain connection informaiton.
Diffstat (limited to 'src/Graylog/UDP.hs')
-rw-r--r--src/Graylog/UDP.hs14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/Graylog/UDP.hs b/src/Graylog/UDP.hs
index 6aec108..00b6a12 100644
--- a/src/Graylog/UDP.hs
+++ b/src/Graylog/UDP.hs
@@ -2,18 +2,12 @@ module Graylog.UDP
2 ( Graylog (..) 2 ( Graylog (..)
3 , sendLog 3 , sendLog
4 4
5 , module Graylog.Gelf 5 , module Export
6 ) where 6 ) where
7 7
8import Network.Socket 8import Graylog.Gelf as Export
9 9import Graylog.Types as Export
10import Graylog.Gelf
11
12data Graylog
13 = Graylog
14 { _graylogHost :: String
15 , _graylogPort :: String
16 }
17 10
18sendLog :: Graylog -> GELF -> IO () 11sendLog :: Graylog -> GELF -> IO ()
19sendLog glog msg = undefined 12sendLog glog msg = undefined
13