diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-31 09:20:27 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-31 09:20:27 +0000 |
commit | 931c847e2b71da1cf74d6122c6b5f3497fcab68c (patch) | |
tree | 88fd505ca01c1d731919dce18145cc5e37bede97 /lib/http_digest.h | |
parent | 8230d9bff85dac401e39e575fca9acb31676ce19 (diff) | |
download | curl-931c847e2b71da1cf74d6122c6b5f3497fcab68c.tar.gz |
CURLDIGEST_BADALGO is a new return code from the digest code
Diffstat (limited to 'lib/http_digest.h')
-rw-r--r-- | lib/http_digest.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/http_digest.h b/lib/http_digest.h index f56024b33..a8b33add8 100644 --- a/lib/http_digest.h +++ b/lib/http_digest.h @@ -26,6 +26,7 @@ typedef enum { CURLDIGEST_NONE, /* not a digest */ CURLDIGEST_BAD, /* a digest, but one we don't like */ + CURLDIGEST_BADALGO, /* unsupported algorithm requested */ CURLDIGEST_FINE, /* a digest we act on */ CURLDIGEST_LAST /* last entry in this enum, don't use */ |