summaryrefslogtreecommitdiff
path: root/src/Network/BitTorrent/Exchange
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-12-05 04:58:26 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-12-05 04:58:26 +0400
commitfda80933f98f6998ac872ab617026ecf06e4768c (patch)
tree60da38644cd3ce07884db666af1d8f105986a927 /src/Network/BitTorrent/Exchange
parent3399beaf2f38d19ed615655f865f3bc8b0cb9309 (diff)
Rename ClientInfo datatype to Fingerprint
Diffstat (limited to 'src/Network/BitTorrent/Exchange')
-rw-r--r--src/Network/BitTorrent/Exchange/Message.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Network/BitTorrent/Exchange/Message.hs b/src/Network/BitTorrent/Exchange/Message.hs
index 8a88b761..85ad76d6 100644
--- a/src/Network/BitTorrent/Exchange/Message.hs
+++ b/src/Network/BitTorrent/Exchange/Message.hs
@@ -203,7 +203,7 @@ instance Serialize Handshake where
203 203
204instance Pretty Handshake where 204instance Pretty Handshake where
205 pretty Handshake {..} 205 pretty Handshake {..}
206 = text (BC.unpack hsProtocol) <+> pretty (clientInfo hsPeerId) 206 = text (BC.unpack hsProtocol) <+> pretty (fingerprint hsPeerId)
207 207
208-- | Get handshake message size in bytes from the length of protocol 208-- | Get handshake message size in bytes from the length of protocol
209-- string. 209-- string.