fix indentation

master
Christian Ulrich 2020-10-22 00:40:14 +02:00
parent c59d6e42f7
commit 504ff6795a
No known key found for this signature in database
GPG Key ID: 8241BE099775A097
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ proc initiate*(puncher: TcpSyniInitiator, srcPort: Port, dstIp: IpAddress,
let connectFuture = newFuture[AsyncSocket]("connect")
for dstPort in attempt.dstPorts:
asyncCheck connect(attempt.srcIp, attempt.srcPort, attempt.dstIp,
dstPort, connectFuture)
dstPort, connectFuture)
await connectFuture or sleepAsync(Timeout)
await attempt.deleteFirewallRules()
puncher.attempts.del(puncher.attempts.find(attempt))