diff options
Diffstat (limited to 'lib/pure/asynchttpserver.nim')
-rw-r--r-- | lib/pure/asynchttpserver.nim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/pure/asynchttpserver.nim b/lib/pure/asynchttpserver.nim index 6c2414d99..005c56ebc 100644 --- a/lib/pure/asynchttpserver.nim +++ b/lib/pure/asynchttpserver.nim @@ -14,12 +14,13 @@ import strtabs, asyncnet, asyncdispatch, parseutils, parseurl, strutils type TRequest* = object - client: PAsyncSocket # TODO: Separate this into a Response object? + client*: PAsyncSocket # TODO: Separate this into a Response object? reqMethod*: string headers*: PStringTable protocol*: tuple[orig: string, major, minor: int] url*: TURL hostname*: string ## The hostname of the client that made the request. + body*: string # TODO PAsyncHttpServer* = ref object socket: PAsyncSocket @@ -169,6 +170,10 @@ proc serve*(server: PAsyncHttpServer, port: TPort, var fut = await server.socket.acceptAddr() processClient(fut.client, fut.address, callback) +proc close*(server: PAsyncHttpServer) = + ## Terminates the async http server instance. + server.socket.close() + when isMainModule: var server = newAsyncHttpServer() proc cb(req: TRequest) {.async.} = |