[http] Add support for NTLM authentication

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2017-11-11 22:43:03 +00:00
parent 96bd872c03
commit b5e0b50723
5 changed files with 231 additions and 0 deletions

View File

@@ -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

View File

@@ -77,6 +77,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
*/
#define HTTP_AUTH_BASIC /* Basic authentication */
#define HTTP_AUTH_DIGEST /* Digest authentication */
//#define HTTP_AUTH_NTLM /* NTLM authentication */
//#define HTTP_ENC_PEERDIST /* PeerDist content encoding */
//#define HTTP_HACK_GCE /* Google Compute Engine hacks */