Przeglądaj źródła

nonce_retries field removed.

Jan Janak 22 lat temu
rodzic
commit
6595ae8150
2 zmienionych plików z 0 dodań i 2 usunięć
  1. 0 1
      parser/digest/digest.c
  2. 0 1
      parser/digest/digest.h

+ 0 - 1
parser/digest/digest.c

@@ -49,7 +49,6 @@ static inline int new_credentials(struct hdr_field* _h)
 		
 	init_dig_cred(&(b->digest));
 	b->stale = 0;
-	b->nonce_retries = 0;
 	b->authorized = 0;
 
 	_h->parsed = (void*)b;

+ 0 - 1
parser/digest/digest.h

@@ -51,7 +51,6 @@ typedef struct auth_body {
 	struct hdr_field* authorized;
 	dig_cred_t digest;           /* Parsed digest credentials */
 	unsigned char stale;         /* Flag is set if nonce is stale */
-	int nonce_retries;           /* How many times the nonce was used */
 } auth_body_t;