diff options
Diffstat (limited to 'lib/pure/httpclient.nim')
-rw-r--r-- | lib/pure/httpclient.nim | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/pure/httpclient.nim b/lib/pure/httpclient.nim index a5d4ec1a1..8e182e274 100644 --- a/lib/pure/httpclient.nim +++ b/lib/pure/httpclient.nim @@ -166,12 +166,12 @@ proc parseChunks(s: Socket, timeout: int): string = proc parseBody(s: Socket, headers: StringTableRef, timeout: int): string = result = "" - if headers["Transfer-Encoding"] == "chunked": + if headers.getOrDefault"Transfer-Encoding" == "chunked": result = parseChunks(s, timeout) else: # -REGION- Content-Length # (http://tools.ietf.org/html/rfc2616#section-4.4) NR.3 - var contentLengthHeader = headers["Content-Length"] + var contentLengthHeader = headers.getOrDefault"Content-Length" if contentLengthHeader != "": var length = contentLengthHeader.parseint() if length > 0: @@ -190,7 +190,7 @@ proc parseBody(s: Socket, headers: StringTableRef, timeout: int): string = # -REGION- Connection: Close # (http://tools.ietf.org/html/rfc2616#section-4.4) NR.5 - if headers["Connection"] == "close": + if headers.getOrDefault"Connection" == "close": var buf = "" while true: buf = newString(4000) @@ -456,7 +456,7 @@ proc redirection(status: string): bool = return true proc getNewLocation(lastUrl: string, headers: StringTableRef): string = - result = headers["Location"] + result = headers.getOrDefault"Location" if result == "": httpError("location header expected") # Relative URLs. (Not part of the spec, but soon will be.) let r = parseUri(result) @@ -679,12 +679,12 @@ proc parseChunks(client: AsyncHttpClient): Future[string] {.async.} = proc parseBody(client: AsyncHttpClient, headers: StringTableRef): Future[string] {.async.} = result = "" - if headers["Transfer-Encoding"] == "chunked": + if headers.getOrDefault"Transfer-Encoding" == "chunked": result = await parseChunks(client) else: # -REGION- Content-Length # (http://tools.ietf.org/html/rfc2616#section-4.4) NR.3 - var contentLengthHeader = headers["Content-Length"] + var contentLengthHeader = headers.getOrDefault"Content-Length" if contentLengthHeader != "": var length = contentLengthHeader.parseint() if length > 0: @@ -699,7 +699,7 @@ proc parseBody(client: AsyncHttpClient, # -REGION- Connection: Close # (http://tools.ietf.org/html/rfc2616#section-4.4) NR.5 - if headers["Connection"] == "close": + if headers.getOrDefault"Connection" == "close": var buf = "" while true: buf = await client.socket.recvFull(4000) |