diff options
author | Michael Brown <mcb30@ipxe.org> | 2017-11-11 22:43:03 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2017-11-12 18:52:04 +0000 |
commit | b5e0b5072317f11b27d2d813bd1c93788584a9f2 (patch) | |
tree | dad3a65ce4850ca6226cbb234a7fd2f0fd072e5a /src/config/config_http.c | |
parent | 96bd872c0342fcc290e9162154d07371405cf384 (diff) | |
download | ipxe-b5e0b5072317f11b27d2d813bd1c93788584a9f2.tar.gz |
[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.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/config_http.c b/src/config/config_http.c index 3c0e78028..4373ea2c0 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 |