| Commit message (Expand) | Author | Age | Files | Lines |
| * | Implement ZONEMD (RFC8976), based on DS (ds_43.c) |  florian | 2021-04-02 | 3 | -2/+124 |
| * | Rewrite parse_netprefix to no longer use isc_sockaddr_fromin{,6}. |  florian | 2020-12-21 | 2 | -40/+2 |
| * | Fix copy-pasto when selecting the addresses read from resolv.conf by |  otto | 2020-12-20 | 1 | -1/+1 |
| * | Use IN_MULTICAST correctly, so it checks the IP address rather than the |  jmatthew | 2020-11-28 | 1 | -2/+2 |
| * | Implement Extended DNS Error (RFC 8914). |  florian | 2020-11-01 | 2 | -1/+78 |
| * | Do not "fall through" to the last "else" when we parsed the character. |  florian | 2020-10-19 | 1 | -1/+5 |
| * | We have sockaddr_storage these days, get rid of isc_sockaddr_t. |  florian | 2020-09-15 | 5 | -118/+135 |
| * | The various sockaddr structures have length fields these days. |  florian | 2020-09-15 | 3 | -13/+8 |
| * | we no longer need isc_netaddr_t |  florian | 2020-09-15 | 6 | -216/+16 |
| * | remove 3 unused protos; ok florian |  deraadt | 2020-09-15 | 1 | -8/+1 |
| * | rewrite generating of IPv6 reverse names, lets us get rid of byaddr. |  florian | 2020-09-15 | 3 | -203/+2 |
| * | move islinklocal, ismulticast, issitelocal from netaddr to sockaddr |  florian | 2020-09-15 | 3 | -76/+14 |
| * | Mechanically replace isc_boolean_t with int. |  florian | 2020-09-14 | 97 | -774/+727 |
| * | Bunch of dead stores and otherwise unused stuff lets us get rid of |  florian | 2020-09-14 | 21 | -210/+27 |
| * | Rewrite isc_time_microdiff() as uelapsed() and put it directly |  florian | 2020-09-14 | 4 | -94/+8 |
| * | Get rid of isc_parse_uint32() and replace it with strtonum. |  florian | 2020-09-13 | 4 | -108/+3 |
| * | remove unused lex states |  florian | 2020-09-13 | 1 | -55/+1 |
| * | remove unused LEX_OPTs |  florian | 2020-09-13 | 2 | -103/+5 |
| * | No need to refcount the parser, we never hold more than one reference. |  florian | 2020-09-13 | 2 | -37/+12 |
| * | Remove unused callback mechanism / indirection. |  florian | 2020-09-12 | 1 | -37/+9 |
| * | fix socket_log() calls, EVENT expands to three comma separated |  otto | 2020-05-10 | 1 | -4/+4 |
| * | Make sure cmsgbufs are properly aligned by using the idiom from the |  otto | 2020-05-08 | 1 | -5/+15 |
| * | Replace a bunch of hand rolled date / time math with gmtime(3). |  florian | 2020-04-02 | 2 | -87/+24 |
| * | unused constants |  florian | 2020-03-27 | 1 | -16/+1 |
| * | no need to go through RETERR when we return a constant |  florian | 2020-02-26 | 5 | -22/+22 |
| * | In preparation of compiling lib/dns/rdata/ files individually we need |  florian | 2020-02-26 | 59 | -524/+426 |
| * | In preparation of compiling lib/dns/rdata/ files individually we need |  florian | 2020-02-26 | 63 | -228/+178 |
| * | Always printing unknown types as TYPE%u and not sometimes as %u |  florian | 2020-02-26 | 79 | -458/+63 |
| * | Rewrite dns_rdatatype_fromtext to use a binary search over a static |  florian | 2020-02-26 | 2 | -258/+125 |
| * | use timingsafe_bcmp and get rid of now unused safe.c |  florian | 2020-02-25 | 6 | -86/+13 |
| * | use freezero() rather that explicit_bzero() when free() is immediately |  deraadt | 2020-02-25 | 2 | -14/+8 |
| * | malloc(a * b) -> reallocarray(NULL, a, b) |  deraadt | 2020-02-25 | 9 | -44/+24 |
| * | unused file |  florian | 2020-02-25 | 1 | -59/+0 |
| * | declare isc_appctx_t once where it is used |  jsg | 2020-02-25 | 2 | -9/+2 |
| * | Do not generate dns_rdatatype_attributes and dns_rdatatype_totext. |  florian | 2020-02-25 | 2 | -36/+360 |
| * | reduce multiple newlines |  jsg | 2020-02-25 | 120 | -604/+91 |
| * | remove some unused typedefs |  jsg | 2020-02-25 | 3 | -21/+2 |
| * | remove some unused defines |  jsg | 2020-02-25 | 1 | -15/+0 |
| * | Stop generating rdatastruct.h and put the dns_rdata_* structs for |  florian | 2020-02-24 | 85 | -2561/+47 |
| * | Delete a few more fromstruct_*, tostruct_* and freestruct_* functions |  florian | 2020-02-24 | 6 | -356/+4 |
| * | We only need to create cname, ns, soa and tsig structs. |  florian | 2020-02-24 | 78 | -2239/+134 |
| * | We only need to fill a wire format buffer from soa and tsig structs. |  florian | 2020-02-24 | 80 | -1545/+128 |
| * | We only need to free cname, ns, soa and tsig structs. |  florian | 2020-02-24 | 78 | -791/+117 |
| * | We are never required to "render glue first" since we just print what |  florian | 2020-02-24 | 2 | -39/+2 |
| * | dead store, pointed out by scan build |  florian | 2020-02-24 | 1 | -11/+1 |
| * | totext_filter_proc is always null, remove. |  florian | 2020-02-24 | 2 | -21/+2 |
| * | remove some unused code |  jsg | 2020-02-24 | 8 | -399/+6 |
| * | remove some uneeded includes |  jsg | 2020-02-24 | 16 | -58/+32 |
| * | We only need to check the owner for nsec3 records, remove all the |  florian | 2020-02-24 | 82 | -1033/+61 |
| * | We are always preserving the order of records. |  florian | 2020-02-24 | 83 | -2496/+86 |