summaryrefslogtreecommitdiffstats
path: root/src/config/config_http.c
diff options
context:
space:
mode:
authorMichael Brown2017-11-11 23:43:03 +0100
committerMichael Brown2017-11-12 19:52:04 +0100
commitb5e0b5072317f11b27d2d813bd1c93788584a9f2 (patch)
treedad3a65ce4850ca6226cbb234a7fd2f0fd072e5a /src/config/config_http.c
parent[http] Handle parsing of WWW-Authenticate header within authentication scheme (diff)
downloadipxe-b5e0b5072317f11b27d2d813bd1c93788584a9f2.tar.gz
ipxe-b5e0b5072317f11b27d2d813bd1c93788584a9f2.tar.xz
ipxe-b5e0b5072317f11b27d2d813bd1c93788584a9f2.zip
[http] Add support for NTLM authentication
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config_http.c')
-rw-r--r--src/config/config_http.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/config_http.c b/src/config/config_http.c
index 3c0e7802..4373ea2c 100644
--- a/src/config/config_http.c
+++ b/src/config/config_http.c
@@ -40,6 +40,9 @@ REQUIRE_OBJECT ( httpbasic );
#ifdef HTTP_AUTH_DIGEST
REQUIRE_OBJECT ( httpdigest );
#endif
+#ifdef HTTP_AUTH_NTLM
+REQUIRE_OBJECT ( httpntlm );
+#endif
#ifdef HTTP_ENC_PEERDIST
REQUIRE_OBJECT ( peerdist );
#endif