Home | History | Annotate | Download | only in server

Lines Matching defs:ntlm

106   bool ntlm;      /* Authorization ntlm header found */
653 else if(!req->ntlm &&
654 strstr(req->reqbuf, "Authorization: NTLM TlRMTVNTUAAD")) {
655 /* If the client is passing this type-3 NTLM header */
657 req->ntlm = TRUE; /* NTLM found */
658 logmsg("Received NTLM type-3, sending back data %ld", req->partno);
663 else if(!req->ntlm &&
664 strstr(req->reqbuf, "Authorization: NTLM TlRMTVNTUAAB")) {
665 /* If the client is passing this type-1 NTLM header */
667 req->ntlm = TRUE; /* NTLM found */
668 logmsg("Received NTLM type-1, sending back data %ld", req->partno);
804 req->ntlm = FALSE;