diff --git a/src/test/check_getdns_context_set_context_update_callback.h b/src/test/check_getdns_context_set_context_update_callback.h index 214893a2..77926664 100644 --- a/src/test/check_getdns_context_set_context_update_callback.h +++ b/src/test/check_getdns_context_set_context_update_callback.h @@ -301,6 +301,8 @@ * expect: GETDNS_CONTEXT_CODE_EDNS_EXTENDED_RCODE */ struct getdns_context *context = NULL; + uint8_t extended_rcode; + CONTEXT_CREATE(TRUE); ASSERT_RC(getdns_context_set_context_update_callback(context, update_callbackfn), @@ -310,6 +312,9 @@ ASSERT_RC(getdns_context_set_edns_extended_rcode(context, 1), GETDNS_RETURN_GOOD, "Return code from getdns_context_set_edns_extended_rcode()"); + ASSERT_RC(getdns_context_get_edns_extended_rcode(context, &extended_rcode), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_edns_extended_rcode()"); + ck_assert_msg(extended_rcode == 1, "extended_rcode should be 1, got %d", (int)extended_rcode); CONTEXT_DESTROY; @@ -325,6 +330,8 @@ * expect: GETDNS_CONTEXT_CODE_EDNS_VERSION */ struct getdns_context *context = NULL; + uint8_t version; + CONTEXT_CREATE(TRUE); ASSERT_RC(getdns_context_set_context_update_callback(context, update_callbackfn), @@ -334,6 +341,9 @@ ASSERT_RC(getdns_context_set_edns_version(context, 1), GETDNS_RETURN_GOOD, "Return code from getdns_context_set_edns_version()"); + ASSERT_RC(getdns_context_get_edns_version(context, &version), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_edns_version()"); + ck_assert_msg(version == 1, "version should be 1, got %d", (int)version); CONTEXT_DESTROY; @@ -373,6 +383,8 @@ * expect: GETDNS_CONTEXT_CODE_EDNS_CLIENT_SUBNET_PRIVATE */ struct getdns_context *context = NULL; + uint8_t client_subnet_private; + CONTEXT_CREATE(TRUE); ASSERT_RC(getdns_context_set_context_update_callback(context, update_callbackfn), @@ -382,6 +394,9 @@ ASSERT_RC(getdns_context_set_edns_client_subnet_private(context, 1), GETDNS_RETURN_GOOD, "Return code from getdns_context_set_edns_client_subnet_private()"); + ASSERT_RC(getdns_context_get_edns_client_subnet_private(context, &client_subnet_private), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_edns_client_subnet_private()"); + ck_assert_msg(client_subnet_private == 1, "client_subnet_private should be 1, got %d", (int)client_subnet_private); CONTEXT_DESTROY; @@ -397,6 +412,8 @@ * expect: GETDNS_CONTEXT_CODE_TLS_QUERY_PADDING_BLOCKSIZE */ struct getdns_context *context = NULL; + uint16_t pad; + CONTEXT_CREATE(TRUE); ASSERT_RC(getdns_context_set_context_update_callback(context, update_callbackfn), @@ -406,6 +423,9 @@ ASSERT_RC(getdns_context_set_tls_query_padding_blocksize(context, 1400), GETDNS_RETURN_GOOD, "Return code from getdns_context_set_tls_query_padding_blocksize()"); + ASSERT_RC(getdns_context_get_tls_query_padding_blocksize(context, &pad), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_tls_query_padding_blocksize()"); + ck_assert_msg(pad == 1400, "padding_blocksize should be 1400 but got %d", (int) pad); CONTEXT_DESTROY; @@ -438,11 +458,12 @@ START_TEST (getdns_context_set_context_update_callback_23) { /* - * value is NULL - * expect: GETDNS_RETURN_INVALID_PARAMETER + * expect: GETDNS_RETURN_GOOD */ struct getdns_context *context = NULL; + uint8_t round_robin; + CONTEXT_CREATE(TRUE); ASSERT_RC(getdns_context_set_context_update_callback(context, update_callbackfn), @@ -451,7 +472,10 @@ expected_changed_item = GETDNS_CONTEXT_CODE_ROUND_ROBIN_UPSTREAMS; ASSERT_RC(getdns_context_set_round_robin_upstreams(context, 1), - GETDNS_RETURN_GOOD, "Return code from getdns_context_set_timeout()"); + GETDNS_RETURN_GOOD, "Return code from getdns_context_set_round_robin_upstream()"); + ASSERT_RC(getdns_context_get_round_robin_upstreams(context, &round_robin), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_round_robin_upstream()"); + ck_assert_msg( round_robin == 1, "round_robin should be 1, got %d", (int)round_robin); CONTEXT_DESTROY; diff --git a/src/test/check_getdns_context_set_dns_transport.h b/src/test/check_getdns_context_set_dns_transport.h index fba6c195..93362071 100644 --- a/src/test/check_getdns_context_set_dns_transport.h +++ b/src/test/check_getdns_context_set_dns_transport.h @@ -39,7 +39,7 @@ { /* * context is NULL - * expect: GETDNS_RETURN_BAD_CONTEXT + * expect: GETDNS_RETURN_INVALID_PARAMETER */ struct getdns_context *context = NULL; @@ -47,7 +47,12 @@ ASSERT_RC(getdns_context_set_dns_transport(context, value), GETDNS_RETURN_INVALID_PARAMETER, "Return code from getdns_context_set_dns_transport()"); - + + ASSERT_RC(getdns_context_set_edns_maximum_udp_payload_size(context, 512), + GETDNS_RETURN_INVALID_PARAMETER, "Return code from getdns_context_set_edns_maximum_udp_payload_size()"); + + ASSERT_RC(getdns_context_unset_edns_maximum_udp_payload_size(context), + GETDNS_RETURN_INVALID_PARAMETER, "Return code from getdns_context_unset_edns_maximum_udp_payload_size()"); } END_TEST @@ -55,6 +60,7 @@ { /* * value is an undefined transport value + * do_bit is not correct * expect: GETDNS_RETURN_CONTEXT_UPDATE_FAIL */ @@ -66,6 +72,9 @@ ASSERT_RC(getdns_context_set_dns_transport(context, 233), GETDNS_RETURN_CONTEXT_UPDATE_FAIL, "Return code from getdns_context_set_dns_transport()"); + ASSERT_RC(getdns_context_set_edns_do_bit(context, 5), + GETDNS_RETURN_CONTEXT_UPDATE_FAIL, "Return code from getdns_context_set_edns_do_bit()"); + CONTEXT_DESTROY; } @@ -132,6 +141,9 @@ uint32_t tc; uint32_t transport; uint32_t type; + uint16_t payload_size; + uint8_t do_bit; + getdns_transport_t trans; /* Note that stricly this test just establishes that the requested transport and the reported transport are consistent, it does not guarentee which @@ -147,10 +159,22 @@ /* Request a response that should be truncated over UDP */ ASSERT_RC(getdns_context_set_dns_transport(context, GETDNS_TRANSPORT_UDP_ONLY), GETDNS_RETURN_GOOD, "Return code from getdns_context_set_dns_transport()"); + ASSERT_RC(getdns_context_get_dns_transport(context, &trans), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_dns_transport()"); + ck_assert_msg(trans == 541, "dns_transport should be 541(GETDNS_TRANSPORT_UDP_ONLY) but got %d", (int)trans); + + ASSERT_RC(getdns_context_set_edns_maximum_udp_payload_size(context, 512), - GETDNS_RETURN_GOOD, "Return code from getdns_context_set_edns_maximum_udp_payload_size()"); + GETDNS_RETURN_GOOD, "Return code from getdns_context_set_edns_maximum_udp_payload_size()"); + ASSERT_RC(getdns_context_get_edns_maximum_udp_payload_size(context, &payload_size), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_edns_maximum_udp_payload_size()"); + ck_assert_msg(payload_size == 512, "payload_size should be 512, got %d", (int)payload_size); + ASSERT_RC(getdns_context_set_edns_do_bit(context, 1), GETDNS_RETURN_GOOD, "Return code from getdns_context_set_edns_do_bit()"); + ASSERT_RC(getdns_context_get_edns_do_bit(context, &do_bit), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_edns_do_bit()"); + ck_assert_msg(do_bit == 1, "do_bit should be 1, got %d", (int)do_bit); ASSERT_RC(getdns_general_sync(context, "large.getdnsapi.net", GETDNS_RRTYPE_TXT, extensions, &response), GETDNS_RETURN_GOOD, "Return code from getdns_general_sync()"); @@ -192,6 +216,9 @@ GETDNS_RETURN_GOOD, "Failed to extract \"tc\""); ASSERT_RC(tc, 0, "Packet trucated - not as expected"); + ASSERT_RC(getdns_context_unset_edns_maximum_udp_payload_size(context), + GETDNS_RETURN_GOOD, "Return code from getdns_context_unset_edns_maximum_udp_payload_size()"); + CONTEXT_DESTROY; } diff --git a/src/test/check_getdns_context_set_timeout.c b/src/test/check_getdns_context_set_timeout.c index 26d25aa5..893608cb 100644 --- a/src/test/check_getdns_context_set_timeout.c +++ b/src/test/check_getdns_context_set_timeout.c @@ -282,6 +282,7 @@ START_TEST (getdns_context_set_timeout_3) t_data.num_callbacks = 0; t_data.num_timeouts = 0; t_data.port = 43210; + uint64_t timeout; pthread_create(&thread, NULL, run_server, (void *)&t_data); @@ -324,6 +325,10 @@ START_TEST (getdns_context_set_timeout_3) RUN_EVENT_LOOP; + ASSERT_RC(getdns_context_get_timeout(context, &timeout), + GETDNS_RETURN_GOOD, "Return code from getdns_context_get_timeout()"); + ck_assert_msg(timeout == 500, "timeout should be 500, got %d", (int)timeout); + CONTEXT_DESTROY; t_data.running = 0; diff --git a/src/test/check_getdns_pretty_print_dict.h b/src/test/check_getdns_pretty_print_dict.h index 08aec6c1..6dc6d189 100644 --- a/src/test/check_getdns_pretty_print_dict.h +++ b/src/test/check_getdns_pretty_print_dict.h @@ -88,6 +88,68 @@ static const char pretty_expected[] = "{\n" " ]\n" "}"; +static const char pretty_expected2[] = "{\n" +" \"bindata\":\"bindata\",\n" +" \"dict\":\n" +" {\n" +" \"bindata\":\"bindata\",\n" +" \"dict\":\n" +" {\n" +" \"bindata\":\"bindata\",\n" +" \"dict\":\n" +" {\n" +" \"int\": 4\n" +" },\n" +" \"int\": 3,\n" +" \"list\":\n" +" [\n" +" 5\n" +" ]\n" +" },\n" +" \"int\": 2,\n" +" \"list\":\n" +" [\n" +" 6,\n" +" \"bindata\",\n" +" {\n" +" \"bindata\":\"bindata\"\n" +" },\n" +" [\n" +" \"bindata\"\n" +" ]\n" +" ]\n" +" },\n" +" \"int\": 1,\n" +" \"list\":\n" +" [\n" +" 7,\n" +" \"bindata\",\n" +" {\n" +" \"bindata\":\"bindata\",\n" +" \"dict\":\n" +" {\n" +" \"int\": 9\n" +" },\n" +" \"int\": 8,\n" +" \"list\":\n" +" [\n" +" 10\n" +" ]\n" +" },\n" +" [\n" +" 11,\n" +" \"bindata\",\n" +" {\n" +" \"bindata\":\"bindata\"\n" +" },\n" +" [\n" +" \"bindata\"\n" +" ]\n" +" ]\n" +" ]\n" +"}"; + + /* ************************************************************************** * * @@ -267,6 +329,11 @@ static const char pretty_expected[] = "{\n" ck_assert_msg(strcmp(pretty_expected, pretty) == 0, "Expected:\n%s\ngot:\n%s\n", pretty_expected, pretty); + pretty = getdns_print_json_dict(dict1, 1); + ck_assert_msg(pretty != NULL, "NULL returned by getdns_print_json_dict()"); + ck_assert_msg(strcmp(pretty_expected2, pretty) == 0, + "Expected:\n%s\ngot:\n%s\n", pretty_expected2, pretty); + /* * Destroy all of the sub-dicts and sub-lists */ diff --git a/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.c b/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.c index 0e69eb4c..a8d16c6a 100644 --- a/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.c +++ b/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.c @@ -27,6 +27,14 @@ void print_list(getdns_list *rr_list) free(str); } +void print_json_list(getdns_list *rr_list, int pretty) +{ + char *str = getdns_print_json_list(rr_list, pretty); + printf("%s\n", str); + free(str); +} + + void print_wire(uint8_t *wire, size_t wire_len) { size_t pos, i; @@ -254,6 +262,7 @@ int main(int argc, char const * const argv[]) fclose(in); print_list(rr_list); + print_json_list(rr_list, 1); /* Fill the wire_buf with wireformat RR's in rr_list diff --git a/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.good b/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.good index 9079ef9a..b1acbd46 100644 --- a/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.good +++ b/src/test/tpkg/260-conversion-functions.tpkg/260-conversion-functions.good @@ -1631,6 +1631,1537 @@ apl.net-dns.org. 3600 IN APL 1:192.168.42.0/26 1:192.168.42.64/26 !1:192.168.42. "type": GETDNS_RRTYPE_TXT } ] +[ + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "expire": 345600, + "minimum": 300, + "mname":"ns.nlnetlabs.nl.", + "rdata_raw":[2,110,115,9,110,108,110,101,116,108,97,98,115,2,110,108,0,8,115,121,115,97,100,109,105,110,9,110,108,110,101,116,108,97,98,115,2,110,108,0,120,27,181,72,0,0,1,194,0,0,2,88,0,5,70,0,0,0,1,44], + "refresh": 450, + "retry": 600, + "rname":"sysadmin.nlnetlabs.nl.", + "serial": 2015081800 + }, + "ttl": 30, + "type": 6 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "nsdname":"ns.nlnetlabs.nl.", + "rdata_raw":"ns.nlnetlabs.nl." + }, + "ttl": 30, + "type": 2 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "nsdname":"ns.hactrn.net.", + "rdata_raw":"ns.hactrn.net." + }, + "ttl": 30, + "type": 2 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "nsdname":"mcvax.nlnet.nl.", + "rdata_raw":"mcvax.nlnet.nl." + }, + "ttl": 30, + "type": 2 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "nsdname":"sec2.authdns.ripe.net.", + "rdata_raw":"sec2.authdns.ripe.net." + }, + "ttl": 30, + "type": 2 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "ipv4_address":"185.49.140.22", + "rdata_raw":[185,49,140,22] + }, + "ttl": 30, + "type": 1 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "ipv6_address":"2a04:b900::2:0:0:22", + "rdata_raw":[42,4,185,0,0,0,0,0,0,2,0,0,0,0,0,34] + }, + "ttl": 30, + "type": 28 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "exchange":"dicht.nlnetlabs.nl.", + "preference": 10, + "rdata_raw":[0,10,5,100,105,99,104,116,9,110,108,110,101,116,108,97,98,115,2,110,108,0] + }, + "ttl": 30, + "type": 15 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "exchange":"mcvax.nlnet.nl.", + "preference": 20, + "rdata_raw":[0,20,5,109,99,118,97,120,5,110,108,110,101,116,2,110,108,0] + }, + "ttl": 30, + "type": 15 + }, + { + "class": 1, + "name":"net-dns.org.", + "rdata": + { + "rdata_raw":[16,78,101,116,58,58,68,78,83,32,32,100,111,109,97,105,110], + "txt_strings": + [ + "Net::DNS domain" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"_443._tcp.net-dns.org.", + "rdata": + { + "certificate_association_data":[39,76,111,150,201,136,92,128,80,232,160,90,209,195,22,44,29,81,117,44,53,182,25,100,116,227,240,90,211,28,217,35], + "certificate_usage": 3, + "matching_type": 1, + "rdata_raw":[3,1,1,39,76,111,150,201,136,92,128,80,232,160,90,209,195,22,44,29,81,117,44,53,182,25,100,116,227,240,90,211,28,217,35], + "selector": 1 + }, + "ttl": 30, + "type": 52 + }, + { + "class": 1, + "name":"_443._tcp.www.net-dns.org.", + "rdata": + { + "certificate_association_data":[39,76,111,150,201,136,92,128,80,232,160,90,209,195,22,44,29,81,117,44,53,182,25,100,116,227,240,90,211,28,217,35], + "certificate_usage": 3, + "matching_type": 1, + "rdata_raw":[3,1,1,39,76,111,150,201,136,92,128,80,232,160,90,209,195,22,44,29,81,117,44,53,182,25,100,116,227,240,90,211,28,217,35], + "selector": 1 + }, + "ttl": 30, + "type": 52 + }, + { + "class": 1, + "name":"dynup.net-dns.org.", + "rdata": + { + "rdata_raw":[7,102,111,111,70,111,111,50,9,66,108,97,32,59,32,70,111,111], + "txt_strings": + [ + "fooFoo2", + "Bla ; Foo" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"lists.net-dns.org.", + "rdata": + { + "ipv4_address":"63.209.15.196", + "rdata_raw":[63,209,15,196] + }, + "ttl": 30, + "type": 1 + }, + { + "class": 1, + "name":"localhost.net-dns.org.", + "rdata": + { + "ipv4_address":"127.0.0.1", + "rdata_raw":[127,0,0,1] + }, + "ttl": 30, + "type": 1 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,49,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 1 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,50,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 2 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,51,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 3 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,52,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 4 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,53,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 5 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,54,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 6 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,55,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 7 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,56,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 8 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[62,65,110,100,32,108,105,110,101,32,57,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 9 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,48,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 10 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,49,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 11 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,50,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 12 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,51,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 13 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,52,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 14 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,53,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 15 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,54,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 16 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,55,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 17 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,56,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 18 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,49,57,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 19 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,48,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 20 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,49,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 21 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,50,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 22 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,51,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 23 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,53,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 25 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,54,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 26 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,55,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 27 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,56,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 28 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,50,57,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 29 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,48,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 30 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,49,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 31 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,50,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 32 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,51,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 33 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,52,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 34 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,53,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 35 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,54,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 36 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,55,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 37 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,56,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 38 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,51,57,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 39 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,48,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 40 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,49,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 41 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,50,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 42 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,51,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 43 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,52,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 44 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,53,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 45 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,54,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 46 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,55,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 47 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,56,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 48 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,52,57,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 49 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,48,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 50 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,49,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 51 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,50,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 52 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,51,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 53 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,52,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 54 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,53,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 55 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,54,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 56 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,55,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 57 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,56,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 58 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,53,57,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 59 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[63,65,110,100,32,108,105,110,101,32,54,48,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 60 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[64,65,110,100,32,108,105,110,101,32,50,50,52,32,111,102,32,97,108,32,115,111,114,116,115,32,111,102,32,99,114,97,112,32,116,104,97,116,32,119,105,108,108,32,106,117,115,116,32,102,105,108,108,32,116,104,101,32,112,97,99,107,101,116,32], + "txt_strings": + [ + "And line 224 of al sorts of crap that will just fill the packet " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"overflow.net-dns.org.", + "rdata": + { + "rdata_raw":[69,65,110,32,105,110,99,114,101,97,100,105,98,108,121,32,108,97,114,103,101,32,97,110,115,119,101,114,32,115,101,99,116,105,111,110,32,116,104,97,116,32,119,105,108,108,32,108,101,97,100,32,116,111,32,112,97,99,107,101,116,32,111,118,101,114,102,108,111,119], + "txt_strings": + [ + "An increadibly large answer section that will lead to packet overflow" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"t.net-dns.org.", + "rdata": + { + "rdata_raw":[49,84,104,101,32,110,97,109,101,115,32,119,105,116,104,105,110,32,116,104,105,115,32,100,111,109,97,105,110,32,97,114,101,32,117,115,101,100,32,102,111,114,32,116,101,115,116,105,110,103], + "txt_strings": + [ + "The names within this domain are used for testing" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"a.t.net-dns.org.", + "rdata": + { + "ipv4_address":"10.0.1.128", + "rdata_raw":[10,0,1,128] + }, + "ttl": 30, + "type": 1 + }, + { + "class": 1, + "name":"a2.t.net-dns.org.", + "rdata": + { + "ipv4_address":"10.0.1.129", + "rdata_raw":[10,0,1,129] + }, + "ttl": 30, + "type": 1 + }, + { + "class": 1, + "name":"cname.t.net-dns.org.", + "rdata": + { + "cname":"a.t.net-dns.org.", + "rdata_raw":"a.t.net-dns.org." + }, + "ttl": 30, + "type": 5 + }, + { + "class": 1, + "name":"mx.t.net-dns.org.", + "rdata": + { + "exchange":"a.t.net-dns.org.", + "preference": 10, + "rdata_raw":[0,10,1,97,1,116,7,110,101,116,45,100,110,115,3,111,114,103,0] + }, + "ttl": 30, + "type": 15 + }, + { + "class": 1, + "name":"mx2.t.net-dns.org.", + "rdata": + { + "exchange":"a.t.net-dns.org.", + "preference": 10, + "rdata_raw":[0,10,1,97,1,116,7,110,101,116,45,100,110,115,3,111,114,103,0] + }, + "ttl": 30, + "type": 15 + }, + { + "class": 1, + "name":"mx2.t.net-dns.org.", + "rdata": + { + "exchange":"a2.t.net-dns.org.", + "preference": 15, + "rdata_raw":[0,15,2,97,50,1,116,7,110,101,116,45,100,110,115,3,111,114,103,0] + }, + "ttl": 30, + "type": 15 + }, + { + "class": 1, + "name":"txt.t.net-dns.org.", + "rdata": + { + "rdata_raw":[7,78,101,116,45,68,78,83], + "txt_strings": + [ + "Net-DNS" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"txt2.t.net-dns.org.", + "rdata": + { + "rdata_raw":[26,78,101,116,45,68,78,83,59,32,99,111,109,112,108,105,99,97,116,101,100,32,36,116,117,102,102,33,115,111,114,116,32,111,102,32,34,32,116,101,120,116,59,32,97,110,100,32,98,105,110,97,114,121,32,0,32,100,97,116,97], + "txt_strings": + [ + "Net-DNS; complicated $tuff", + [115,111,114,116,32,111,102,32,34,32,116,101,120,116,59,32,97,110,100,32,98,105,110,97,114,121,32,0,32,100,97,116,97] + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"connection-test.t.net-dns.org.", + "rdata": + { + "rdata_raw":[22,99,111,110,110,101,99,116,105,111,110,45,116,101,115,116,32,115,117,99,99,101,115], + "txt_strings": + [ + "connection-test succes" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"txt-utf8.t.net-dns.org.", + "rdata": + { + "rdata_raw":[9,229,143,164,230,177,160,227,130,132,12,232,155,153,233,163,155,232,190,188,227,130,128,9,230,176,180,227,129,174,233,159,179], + "txt_strings": + [ + [229,143,164,230,177,160,227,130,132], + [232,155,153,233,163,155,232,190,188,227,130,128], + [230,176,180,227,129,174,233,159,179] + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"txt-utf8-bin.t.net-dns.org.", + "rdata": + { + "rdata_raw":[9,229,143,164,230,177,160,227,130,132,12,232,155,153,233,163,155,232,190,188,227,130,128,9,230,176,180,227,129,174,233,159,179], + "txt_strings": + [ + [229,143,164,230,177,160,227,130,132], + [232,155,153,233,163,155,232,190,188,227,130,128], + [230,176,180,227,129,174,233,159,179] + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"a.few.empty.non.terminals.t.net-dns.org.", + "rdata": + { + "rdata_raw":[1,97,3,102,101,119,5,101,109,112,116,121,3,110,111,110,9,116,101,114,109,105,110,97,108,115], + "txt_strings": + [ + "a", + "few", + "empty", + "non", + "terminals" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"a.few.empty.non.terminals.t.net-dns.org.", + "rdata": + { + "ipv4_address":"185.49.140.22", + "rdata_raw":[185,49,140,22] + }, + "ttl": 30, + "type": 1 + }, + { + "class": 1, + "name":"a.few.empty.non.terminals.t.net-dns.org.", + "rdata": + { + "ipv6_address":"2a04:b900::2:0:0:22", + "rdata_raw":[42,4,185,0,0,0,0,0,0,2,0,0,0,0,0,34] + }, + "ttl": 30, + "type": 28 + }, + { + "class": 1, + "name":"yx1.cname.t.net-dns.org.", + "rdata": + { + "cname":"-.t.net-dns.org.", + "rdata_raw":"-.t.net-dns.org." + }, + "ttl": 30, + "type": 5 + }, + { + "class": 1, + "name":"yx2.cname.t.net-dns.org.", + "rdata": + { + "cname":"a-a.t.net-dns.org.", + "rdata_raw":"a-a.t.net-dns.org." + }, + "ttl": 30, + "type": 5 + }, + { + "class": 1, + "name":"yx3.cname.t.net-dns.org.", + "rdata": + { + "cname":"a\..t.net-dns.org.", + "rdata_raw":"a\..t.net-dns.org." + }, + "ttl": 30, + "type": 5 + }, + { + "class": 1, + "name":"yx4.cname.t.net-dns.org.", + "rdata": + { + "cname":"a\000.t.net-dns.org.", + "rdata_raw":"a\000.t.net-dns.org." + }, + "ttl": 30, + "type": 5 + }, + { + "class": 1, + "name":"nx1.cname.t.net-dns.org.", + "rdata": + { + "cname":"does.not.exist.t.net-dns.org.", + "rdata_raw":"does.not.exist.t.net-dns.org." + }, + "ttl": 30, + "type": 5 + }, + { + "class": 1, + "name":"nx2.cname.t.net-dns.org.", + "rdata": + { + "cname":"empty.non.terminals.t.net-dns.org.", + "rdata_raw":"empty.non.terminals.t.net-dns.org." + }, + "ttl": 30, + "type": 5 + }, + { + "class": 1, + "name":"www.net-dns.org.", + "rdata": + { + "ipv4_address":"185.49.140.22", + "rdata_raw":[185,49,140,22] + }, + "ttl": 30, + "type": 1 + }, + { + "class": 1, + "name":"www.net-dns.org.", + "rdata": + { + "ipv6_address":"2a04:b900::2:0:0:22", + "rdata_raw":[42,4,185,0,0,0,0,0,0,2,0,0,0,0,0,34] + }, + "ttl": 30, + "type": 28 + }, + { + "class": 1, + "name":"apl.net-dns.org.", + "rdata": + { + "apitems": + [ + { + "address_family": 1, + "afdpart":[192,168,42], + "n": 0, + "prefix": 26 + }, + { + "address_family": 1, + "afdpart":[192,168,42,64], + "n": 0, + "prefix": 26 + }, + { + "address_family": 1, + "afdpart":[192,168,42,128], + "n": 1, + "prefix": 25 + }, + { + "address_family": 1, + "afdpart":[224], + "n": 0, + "prefix": 4 + }, + { + "address_family": 2, + "afdpart":[255], + "n": 0, + "prefix": 8 + } + ], + "rdata_raw":[0,1,26,3,192,168,42,0,1,26,4,192,168,42,64,0,1,25,132,192,168,42,128,0,1,4,1,224,0,2,8,1,255] + }, + "ttl": 30, + "type": 42 + }, + { + "class": 1, + "name":"ipseckey0.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway_type": 0, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,0,2,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"ipseckey1.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway":[192,0,2,38], + "gateway_type": 1, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,1,2,192,0,2,38,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"ipseckey2.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway":[32,1,13,184,0,0,128,2,0,0,0,0,32,0,0,1], + "gateway_type": 2, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,2,2,32,1,13,184,0,0,128,2,0,0,0,0,32,0,0,1,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"ipseckey3.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway":"mygateway.example.com.", + "gateway_type": 3, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,3,2,9,109,121,103,97,116,101,119,97,121,7,101,120,97,109,112,108,101,3,99,111,109,0,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"ipseckey.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway_type": 0, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,0,2,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"ipseckey.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway":[192,0,2,38], + "gateway_type": 1, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,1,2,192,0,2,38,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"ipseckey.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway":[32,1,13,184,0,0,128,2,0,0,0,0,32,0,0,1], + "gateway_type": 2, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,2,2,32,1,13,184,0,0,128,2,0,0,0,0,32,0,0,1,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"ipseckey.net-dns.org.", + "rdata": + { + "algorithm": 10, + "gateway":"mygateway.example.com.", + "gateway_type": 3, + "precedence": 2, + "public_key":[1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1], + "rdata_raw":[10,3,2,9,109,121,103,97,116,101,119,97,121,7,101,120,97,109,112,108,101,3,99,111,109,0,1,3,81,83,121,134,237,53,83,59,96,100,71,142,238,178,123,91,215,77,174,20,155,110,129,186,58,5,33,175,130,171,120,1] + }, + "ttl": 30, + "type": 45 + }, + { + "class": 1, + "name":"default._domainkey.net-dns.org.", + "rdata": + { + "rdata_raw":[253,118,61,68,75,73,77,49,59,32,114,61,112,111,115,116,109,97,115,116,101,114,59,32,103,61,42,59,32,107,61,114,115,97,59,32,112,61,77,73,71,102,77,65,48,71,67,83,113,71,83,73,98,51,68,81,69,66,65,81,85,65,65,52,71,78,65,68,67,66,105,81,75,66,103,81,68,86,71,47,108,102,70,53,71,116,80,108,77,79,99,83,71,110,102,98,112,53,117,43,69,87,77,43,79,79,103,47,102,54,81,109,98,68,88,79,87,47,122,75,81,107,82,73,82,73,90,43,66,116,102,83,89,99,104,80,56,77,101,70,80,102,77,118,85,90,116,100,82,80,122,67,87,103,49,71,55,79,100,68,55,113,97,84,85,113,99,54,107,86,56,52,111,110,54,47,56,107,80,86,77,103,100,68,76,121,76,108,50,68,101,85,47,76,116,115,57,104,102,86,72,86,68,83,112,87,117,67,104,119,68,65,70,88,110,98,110,87,56,106,112,112,53,52,122,117,111,102,57,79,73,98,87,83,87,73,120,90,113,76,76,56,102,108,103,79,115,81,73,68,65,81,65,66], + "txt_strings": + [ + "v=DKIM1; r=postmaster; g=*; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVG/lfF5GtPlMOcSGnfbp5u+EWM+OOg/f6QmbDXOW/zKQkRIRIZ+BtfSYchP8MeFPfMvUZtdRPzCWg1G7OdD7qaTUqc6kV84on6/8kPVMgdDLyLl2DeU/Lts9hfVHVDSpWuChwDAFXnbnW8jpp54zuof9OIbWSWIxZqLL8flgOsQIDAQAB" + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"2.3.3.updates.spamassassin.net-dns.org.", + "rdata": + { + "rdata_raw":[8,49,52,49,56,50,49,57,32], + "txt_strings": + [ + "1418219 " + ] + }, + "ttl": 30, + "type": 16 + }, + { + "class": 1, + "name":"mirrors.updates.spamassassin.net-dns.org.", + "rdata": + { + "rdata_raw":[60,104,116,116,112,58,47,47,97,110,111,110,121,109,111,117,115,64,115,112,97,109,97,115,115,97,115,115,105,110,46,97,112,97,99,104,101,46,111,114,103,47,117,112,100,97,116,101,115,47,77,73,82,82,79,82,69,68,46,66,89], + "txt_strings": + [ + "http://anonymous@spamassassin.apache.org/updates/MIRRORED.BY" + ] + }, + "ttl": 30, + "type": 16 + } +] record 0, available buffer space: 8117 record 1, available buffer space: 8077 record 2, available buffer space: 8039 diff --git a/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.good b/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.good index 5ac86a9a..6db36868 100644 --- a/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.good +++ b/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.good @@ -918,9 +918,23 @@ "rdata": { "certificate_association_data": , - "certificate_usage": 3, + "certificate_usage": 0, "matching_type": 1, - "rdata_raw": , + "rdata_raw": , + "selector": 0 + }, + "ttl": 30, + "type": GETDNS_RRTYPE_TLSA + }, + { + "class": GETDNS_RRCLASS_IN, + "name": , + "rdata": + { + "certificate_association_data": , + "certificate_usage": 1, + "matching_type": 2, + "rdata_raw": , "selector": 1 }, "ttl": 30, @@ -1008,7 +1022,7 @@ } ] ;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 0 -;; flags: ; QUERY: 0, ANSWER: 77, AUTHORITY: 0, ADDITIONAL: 0 +;; flags: ; QUERY: 0, ANSWER: 78, AUTHORITY: 0, ADDITIONAL: 0 ;; QUESTION SECTION: ;; ANSWER SECTION: @@ -1082,7 +1096,8 @@ spf.net-dns.org. 30 IN SPF "v=spf1 +mx a:colo.nlnetlabs.nl/28 -all" srv.net-dns.org. 30 IN SRV 0 5 80 www.net-dns.org. sshfp.net-dns.org. 30 IN SSHFP 1 1 450C7D19D5DA9A3A5B7C19992D1FBDE15D8DAD44 talink.net-dns.org. 30 IN TALINK h0.net-dns.org. h2.net-dns.org. -_443._tcp.net-dns.org. 30 IN TLSA 3 1 1 274C6F96C9885C8050E8A05AD1C3162C1D51752C35B6196474E3F05AD31CD923 +_443._tcp.net-dns.org. 30 IN TLSA 0 0 1 274C6F96C9885C8050E8A05AD1C3162C1D51752C35B6196474E3F05AD31CD923 +_443._tcp.ww.net-dns.org. 30 IN TLSA 1 1 2 92003BA34942DC74152E2F2C408D29ECA5A520E7F2E06BB944F4DCA346BAF63C1B177615D466F6C4B71C216A50292BD58C9EBDD2F74E38FE51FFD48C43326CBC _443._tcp.www.net-dns.org. 30 IN TLSA 3 1 1 274C6F96C9885C8050E8A05AD1C3162C1D51752C35B6196474E3F05AD31CD923 dynup.net-dns.org. 30 IN TXT "fooFoo2" "Bla ; Foo" default._domainkey.net-dns.org. 30 IN TXT "v=DKIM1; r=postmaster; g=*; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVG/lfF5GtPlMOcSGnfbp5u+EWM+OOg/f6QmbDXOW/zKQkRIRIZ+BtfSYchP8MeFPfMvUZtdRPzCWg1G7OdD7qaTUqc6kV84on6/8kPVMgdDLyLl2DeU/Lts9hfVHVDSpWuChwDAFXnbnW8jpp54zuof9OIbWSWIxZqLL8flgOsQIDAQAB" @@ -1093,5 +1108,5 @@ x25.net-dns.org. 30 IN X25 "1234567" ;; AUTHORITY SECTION: ;; ADDITIONAL SECTION: -;; MSG SIZE rcvd: 6561 +;; MSG SIZE rcvd: 6664 diff --git a/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.net-dns.org b/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.net-dns.org index 5dc23b6b..2275afd4 100644 --- a/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.net-dns.org +++ b/src/test/tpkg/265-supported-rrs.tpkg/265-supported-rrs.net-dns.org @@ -94,7 +94,8 @@ sshfp SSHFP 1 1 450c7d19d5da9a3a5b7c19992d1fbde15d8dad44 ;ta TA talink TALINK h0 h2 ;tkey TKEY -_443._tcp TLSA 3 1 1 274c6f96c9885c8050e8a05ad1c3162c1d51752c35b6196474e3f05ad31cd923 +_443._tcp TLSA 0 0 1 274c6f96c9885c8050e8a05ad1c3162c1d51752c35b6196474e3f05ad31cd923 +_443._tcp.ww TLSA 1 1 2 92003ba34942dc74152e2f2c408d29eca5a520e7f2e06bb944f4dca346baf63c1b177615d466f6c4b71c216a50292bd58c9ebdd2f74e38fe51ffd48c43326cbc _443._tcp.www TLSA 3 1 1 274c6f96c9885c8050e8a05ad1c3162c1d51752c35b6196474e3f05ad31cd923 ;tsig TSIG dynup TXT "fooFoo2" "Bla \; Foo" diff --git a/src/test/tpkg/330-event-loops-unit-tests.tpkg/330-event-loops-unit-tests.test b/src/test/tpkg/330-event-loops-unit-tests.tpkg/330-event-loops-unit-tests.test index c6539115..e80948e0 100644 --- a/src/test/tpkg/330-event-loops-unit-tests.tpkg/330-event-loops-unit-tests.test +++ b/src/test/tpkg/330-event-loops-unit-tests.tpkg/330-event-loops-unit-tests.test @@ -5,10 +5,4 @@ [ -f .tpkg.var.test ] && source .tpkg.var.test cd "${BUILDDIR}/build-event-loops" -if make test -then - if grep ERROR "${BUILDDIR}/build-event-loops/src/test/*.log" - then - exit 1 - fi -fi +make test