Skip to content
Snippets Groups Projects
Commit 0995ede9 authored by Karel Slaný's avatar Karel Slaný
Browse files

Added KNOT_RCODE_BADCOOKIE into knot_rcode_t.

parent 8860574f
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ const knot_lookup_t knot_rcode_names[] = {
{ KNOT_RCODE_NOTAUTH, "NOTAUTH" },
{ KNOT_RCODE_NOTZONE, "NOTZONE" },
{ KNOT_RCODE_BADVERS, "BADVERS" },
{ KNOT_RCODE_BADCOOKIE, "BADCOOKIE" },
{ 0, NULL }
};
......
......@@ -86,7 +86,8 @@ typedef enum {
KNOT_RCODE_NXRRSET = 8, /*!< RR set does not exist. */
KNOT_RCODE_NOTAUTH = 9, /*!< Server not authoritative. / Query not authorized. */
KNOT_RCODE_NOTZONE = 10, /*!< Name is not inside zone. */
KNOT_RCODE_BADVERS = 16 /*!< Bad OPT Version. */
KNOT_RCODE_BADVERS = 16, /*!< Bad OPT Version. */
KNOT_RCODE_BADCOOKIE = 23 /*!< Bad/missing server cookie. */
} knot_rcode_t;
/*!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment