mirror of https://github.com/getdnsapi/getdns.git
Update EDNS0 COOKIE option code
This commit is contained in:
parent
c30f64497e
commit
bb20de43bd
|
@ -5,6 +5,7 @@
|
|||
GETDNS_TRANSPORT_TLS, GETDNS_TRANSPORT_STARTTLS.
|
||||
* Added new context setting for idle_timeout
|
||||
* CSYNC RR type
|
||||
* EDNS0 COOKIE option code set to 10
|
||||
* dnssec_return_validation_chain for negative and insecure responses.
|
||||
* dnssec_return_validation_chain return a single RRSIG on each RRSET
|
||||
(whenever possible)
|
||||
|
|
|
@ -12159,7 +12159,7 @@ _ACEOF
|
|||
esac
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define EDNS_COOKIE_OPCODE 65001
|
||||
#define EDNS_COOKIE_OPCODE 10
|
||||
_ACEOF
|
||||
|
||||
|
||||
|
|
|
@ -193,7 +193,7 @@ case "$enable_draft_edns_cookies" in
|
|||
no|*)
|
||||
;;
|
||||
esac
|
||||
AC_DEFINE_UNQUOTED([EDNS_COOKIE_OPCODE], [65001], [The edns cookie option code.])
|
||||
AC_DEFINE_UNQUOTED([EDNS_COOKIE_OPCODE], [10], [The edns cookie option code.])
|
||||
AC_DEFINE_UNQUOTED([EDNS_COOKIE_ROLLOVER_TIME], [(24 * 60 * 60)], [How often the edns client cookie is refreshed.])
|
||||
|
||||
# search to set include and library paths right
|
||||
|
|
Loading…
Reference in New Issue