diff options
author | Francis Dupont <fdupont@isc.org> | 2020-07-12 09:38:09 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2020-09-12 10:49:43 +0200 |
commit | b731c1fc03d1053ac16777a84800664e10db7b01 (patch) | |
tree | f794a1590ecd5a93caeeababf8dfd7d3eb10fefc /src/lib/http/http_messages.mes | |
parent | [#1304] Updated http client (diff) | |
download | kea-b731c1fc03d1053ac16777a84800664e10db7b01.tar.xz kea-b731c1fc03d1053ac16777a84800664e10db7b01.zip |
[#1304] Updated http response creator
Diffstat (limited to 'src/lib/http/http_messages.mes')
-rw-r--r-- | src/lib/http/http_messages.mes | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/lib/http/http_messages.mes b/src/lib/http/http_messages.mes index a6325e010a..cbd173fb5c 100644 --- a/src/lib/http/http_messages.mes +++ b/src/lib/http/http_messages.mes @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2019 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2016-2020 Internet Systems Consortium, Inc. ("ISC") # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -33,6 +33,22 @@ from the server. The first argument specifies an URL of the server. The second argument provides a response in the textual format. The request is truncated by the logger if it is too large to be printed. +% HTTP_CLIENT_REQUEST_AUTHORIZED received HTTP request authorized for '%1' +This debug message is issued when the server receives with a matching +authentication header. The argument provides the user name. + +% HTTP_CLIENT_REQUEST_BAD_AUTH_HEADER received HTTP request with malformed authentication header: %1 +This information message is issued when the server receives a request with +a malformed authentication header. The argument explains the problem. + +% HTTP_CLIENT_REQUEST_NOT_AUTHORIZED received HTTP request with not matching authentication header +This information message is issued when the server receives a request with +authentication header carrying not recognized credential. + +% HTTP_CLIENT_REQUEST_NO_AUTH_HEADER received HTTP request without required authentication header +This information message is issued when the server receives a request without +a required authentication header. + % HTTP_CLIENT_REQUEST_RECEIVED received HTTP request from %1 This debug message is issued when the server finished receiving a HTTP request from the remote endpoint. The address of the remote endpoint is |