diff options
Diffstat (limited to 'src/Network')
-rw-r--r-- | src/Network/QueryResponse.hs | 1 | ||||
-rw-r--r-- | src/Network/Tox.hs | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Network/QueryResponse.hs b/src/Network/QueryResponse.hs index 3ee6d945..d612ac05 100644 --- a/src/Network/QueryResponse.hs +++ b/src/Network/QueryResponse.hs | |||
@@ -577,6 +577,7 @@ serializeClient c = do | |||
577 | , clientLeaveQuery = \tid didRespond -> putMVar mvar () | 577 | , clientLeaveQuery = \tid didRespond -> putMVar mvar () |
578 | } | 578 | } |
579 | 579 | ||
580 | retardSend :: Int -> Client err meth tid addr x -> IO (Client err meth tid addr x) | ||
580 | retardSend micros client = do | 581 | retardSend micros client = do |
581 | mvar <- newMVar () :: IO (MVar ()) | 582 | mvar <- newMVar () :: IO (MVar ()) |
582 | return client { clientEnterQuery = \tid -> do | 583 | return client { clientEnterQuery = \tid -> do |
diff --git a/src/Network/Tox.hs b/src/Network/Tox.hs index efddc2a0..fcfa872f 100644 --- a/src/Network/Tox.hs +++ b/src/Network/Tox.hs | |||
@@ -445,8 +445,7 @@ newTox keydb addr mbSessionsState suppliedDHTKey = do | |||
445 | let lookupClose _ = return Nothing | 445 | let lookupClose _ = return Nothing |
446 | 446 | ||
447 | mkrouting <- DHT.newRouting addr crypto updateIP updateIP | 447 | mkrouting <- DHT.newRouting addr crypto updateIP updateIP |
448 | let ignoreErrors _ = return () -- Set this to (dput XMisc) to debug onion route building. | 448 | orouter <- newOnionRouter $ dput XRoutes |
449 | orouter <- newOnionRouter ignoreErrors | ||
450 | (cryptonet,dhtcrypt,onioncrypt,dtacrypt,handshakes) <- toxTransport crypto orouter lookupClose udp | 449 | (cryptonet,dhtcrypt,onioncrypt,dtacrypt,handshakes) <- toxTransport crypto orouter lookupClose udp |
451 | 450 | ||
452 | let dhtnet0 = layerTransportM (DHT.decrypt crypto) (DHT.encrypt crypto) dhtcrypt | 451 | let dhtnet0 = layerTransportM (DHT.decrypt crypto) (DHT.encrypt crypto) dhtcrypt |