ape: fix auth.h

This commit is contained in:
cinap_lenrek 2018-05-20 23:22:41 +02:00
parent e69cde3120
commit 930efe67e8

View file

@ -63,6 +63,7 @@ struct AuthInfo
struct Chalstate struct Chalstate
{ {
char *user; char *user;
char *dom;
char chal[MAXCHLEN]; char chal[MAXCHLEN];
int nchal; int nchal;
void *resp; void *resp;
@ -81,7 +82,7 @@ struct Chapreply /* for protocol "chap" */
char resp[MD5LEN]; char resp[MD5LEN];
}; };
struct MSchapreply /* for protocol "mschap" */ struct MSchapreply /* for protocol "mschap" and "ntlm" */
{ {
char LMresp[24]; /* Lan Manager response */ char LMresp[24]; /* Lan Manager response */
char NTresp[24]; /* NT response */ char NTresp[24]; /* NT response */