change handleConn to be a proc

This commit is contained in:
Dmitriy Ryajov 2020-02-24 23:21:10 -06:00
parent 9aa9e97602
commit d1d133319e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ proc readLoop(sconn: SecureConn, stream: BufferStream) {.async.} =
await sconn.close() await sconn.close()
trace "ending secio readLoop", isclosed = sconn.closed() trace "ending secio readLoop", isclosed = sconn.closed()
method handleConn*(s: Secure, conn: Connection): Future[Connection] {.async, base, gcsafe.} = proc handleConn*(s: Secure, conn: Connection): Future[Connection] {.async, gcsafe.} =
var sconn = await s.handshake(conn) var sconn = await s.handshake(conn)
proc writeHandler(data: seq[byte]) {.async, gcsafe.} = proc writeHandler(data: seq[byte]) {.async, gcsafe.} =
trace "sending encrypted bytes", bytes = data.toHex() trace "sending encrypted bytes", bytes = data.toHex()