Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RadKesvat committed Dec 17, 2023
1 parent 25fde6b commit 80adfd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/foreign_server.nim
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ proc processConnection(client: Connection) {.async.} =
data.setLen(data.len() + width)
await remote.reader.readExactly(addr data[0 + width], data.len - width)

if not client.closed and client.isClosing: await client.writer.finish()
if not client.closed and client.isClosing: await client.twriter.finish()
if client.closed or client.isClosing:
client = await acquireClientConnection(true)
if client == nil:
Expand Down
2 changes: 1 addition & 1 deletion src/globals.nim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import dns_resolve, hashes, print, parseopt, strutils, random, net, osproc, strf
import checksums/sha1


const version = "6.9"
const version = "7.0"

type RunMode*{.pure.} = enum
unspecified, iran, kharej
Expand Down

0 comments on commit 80adfd5

Please sign in to comment.