network-data 0.5 → 0.5.1
raw patch · 2 files changed
+4/−4 lines, 2 files
Files
- Data/IP.hs +3/−3
- network-data.cabal +1/−1
Data/IP.hs view
@@ -47,9 +47,9 @@ fromEnum xs = foldl' (.|.) 0 $ map fromEnum1 xs toEnum f = map snd $ filter fst [(testBit f 0, Res), (testBit f 1, MF), (testBit f 2, DF)] -fromEnum1 DF = 4-fromEnum1 MF = 2-fromEnum1 Res = 1+fromEnum1 MF = 1+fromEnum1 DF = 2+fromEnum1 Res = 4 -- |This IPv4 header structure lacks support for options. Ints are used -- for most integral data types and the binary instance hands the bit packing.
network-data.cabal view
@@ -1,5 +1,5 @@ name: network-data-version: 0.5+version: 0.5.1 license: BSD3 license-file: LICENSE author: Thomas DuBuisson <thomas.dubuisson@gmail.com>