]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix to make python module opt_list use opt_list_in.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 29 Nov 2021 10:57:45 +0000 (11:57 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 29 Nov 2021 10:57:45 +0000 (11:57 +0100)
doc/Changelog
pythonmod/interface.i

index daee68596fccb1072339d55541871cf6b4b96180..63ab8def28bcf85c8a93defb469f6a150e9be598 100644 (file)
@@ -1,6 +1,7 @@
 29 November 2021: Wouter
        - Merge PR #570 from rex4539: Fix typos.
        - Fix for #570: regen aclocal.m4, fix configure.ac for spelling.
+       - Fix to make python module opt_list use opt_list_in.
 
 15 November 2021: Tom
        - Improve EDNS option handling, now also works for synthesised
index 6508418936da6ad4767b835ebd8f8dc8bdd53c08..03483abdf82425cbea641ca76943d629343245b6 100644 (file)
@@ -678,11 +678,14 @@ struct edns_data {
     uint8_t edns_version;
     uint16_t bits;
     uint16_t udp_size;
-    struct edns_option* opt_list;
+    struct edns_option* opt_list_in;
+    struct edns_option* opt_list_out;
+    struct edns_option* opt_list_inplace_cb_out;
+    uint16_t padding_block_size;
 };
 %inline %{
     struct edns_option** _edns_data_opt_list_get(struct edns_data* edns) {
-       return &edns->opt_list;
+       return &edns->opt_list_in;
     }
 %}
 %extend edns_data {