summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-10-26 18:49:04 -0400
committerjoe <joe@jerkface.net>2017-10-26 18:49:04 -0400
commit6e191acf0592add909d340284ec541a27e3021d8 (patch)
treea2488b143afb23c789876d56f778751b3257820a /src
parent44573e84be43e4396f4508edb3c04760b6bf8efc (diff)
Checking in readpackets tool for parsing pcap packets.
Diffstat (limited to 'src')
-rw-r--r--src/Crypto/Tox.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Crypto/Tox.hs b/src/Crypto/Tox.hs
index ed8ec59e..d5727254 100644
--- a/src/Crypto/Tox.hs
+++ b/src/Crypto/Tox.hs
@@ -87,7 +87,7 @@ newtype Encrypted a = Encrypted ByteString
87 deriving (Eq,Ord,Data) 87 deriving (Eq,Ord,Data)
88 88
89newtype Encrypted8 a = E8 (Encrypted (a,Nonce8)) 89newtype Encrypted8 a = E8 (Encrypted (a,Nonce8))
90 deriving Serialize 90 deriving (Serialize, Show)
91 91
92newtype (f ∘ g) x = Composed { uncomposed :: f (g x) } 92newtype (f ∘ g) x = Composed { uncomposed :: f (g x) }
93 93