summaryrefslogtreecommitdiff
path: root/src/Network/BitTorrent/DHT/Message.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Network/BitTorrent/DHT/Message.hs')
-rw-r--r--src/Network/BitTorrent/DHT/Message.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Network/BitTorrent/DHT/Message.hs b/src/Network/BitTorrent/DHT/Message.hs
index ac4889fe..acecf8b1 100644
--- a/src/Network/BitTorrent/DHT/Message.hs
+++ b/src/Network/BitTorrent/DHT/Message.hs
@@ -106,13 +106,13 @@ node_id_key = "id"
106-- | All queries have an \"id\" key and value containing the node ID 106-- | All queries have an \"id\" key and value containing the node ID
107-- of the querying node. 107-- of the querying node.
108data Query a = Query 108data Query a = Query
109 { thisNodeId :: NodeId -- ^ node id of /quering/ node; 109 { queringNodeId :: NodeId -- ^ node id of /quering/ node;
110 , queryParams :: a -- ^ query parameters. 110 , queryParams :: a -- ^ query parameters.
111 } deriving (Show, Eq, Typeable) 111 } deriving (Show, Eq, Typeable)
112 112
113instance BEncode a => BEncode (Query a) where 113instance BEncode a => BEncode (Query a) where
114 toBEncode Query {..} = toDict $ 114 toBEncode Query {..} = toDict $
115 node_id_key .=! thisNodeId .: endDict 115 node_id_key .=! queringNodeId .: endDict
116 <> 116 <>
117 dict (toBEncode queryParams) 117 dict (toBEncode queryParams)
118 where 118 where
@@ -126,7 +126,7 @@ instance BEncode a => BEncode (Query a) where
126-- | All responses have an \"id\" key and value containing the node ID 126-- | All responses have an \"id\" key and value containing the node ID
127-- of the responding node. 127-- of the responding node.
128data Response a = Response 128data Response a = Response
129 { remoteNodeId :: NodeId -- ^ node id of /quered/ node; 129 { queredNodeId :: NodeId -- ^ node id of /quered/ node;
130 , responseVals :: a -- ^ query result. 130 , responseVals :: a -- ^ query result.
131 } deriving (Show, Eq, Typeable) 131 } deriving (Show, Eq, Typeable)
132 132