| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix socket_log() calls, EVENT expands to three comma separated | 2020-05-10 | 1 | -4/+4 | |
| | | | | | values; spotted by gcc; ok florian@ | ||||
| * | Make sure cmsgbufs are properly aligned by using the idiom from the | 2020-05-08 | 1 | -5/+15 | |
| | | | | | CMSG_DATA man page. Avoids SIGBUS on landisk; ok kettenis@ jca@ | ||||
| * | Replace a bunch of hand rolled date / time math with gmtime(3). | 2020-04-02 | 2 | -87/+24 | |
| | | | | | | | | | | While here fix dns_time64_from32() to correctly deal with unsigned 32 bit cyclic time that I accidentally broke when I switched "now" from isc_std_time (unsiged 32 bit) to time_t (64 bit). input kettenis, millert, otto, cheloha OK cheloha | ||||
| * | unused constants | 2020-03-27 | 1 | -16/+1 | |
| | | |||||
| * | no need to go through RETERR when we return a constant | 2020-02-26 | 5 | -22/+22 | |
| | | |||||
| * | In preparation of compiling lib/dns/rdata/ files individually we need | 2020-02-26 | 59 | -524/+426 | |
| | | | | | | | global visibility of str_totext. Rename it to isc_str_tobuffer, put it into buffer.c and delete duplicate implementations. | ||||
| * | In preparation of compiling lib/dns/rdata/ files individually we need | 2020-02-26 | 63 | -228/+178 | |
| | | | | | | | global visibility of mem_tobuffer. Rename it to isc_mem_tobuffer, put it into buffer.c and delete duplicate implementations. | ||||
| * | Always printing unknown types as TYPE%u and not sometimes as %u | 2020-02-26 | 79 | -458/+63 | |
| | | | | | | | considerably simplifies dns_rdatatype_attributes() since we then only care about reserved types. tweaks jsg | ||||
| * | Rewrite dns_rdatatype_fromtext to use a binary search over a static | 2020-02-26 | 2 | -258/+125 | |
| | | | | | array. | ||||
| * | use timingsafe_bcmp and get rid of now unused safe.c | 2020-02-25 | 6 | -86/+13 | |
| | | |||||
| * | use freezero() rather that explicit_bzero() when free() is immediately | 2020-02-25 | 2 | -14/+8 | |
| | | | | | | after. pointed out by jsing | ||||
| * | malloc(a * b) -> reallocarray(NULL, a, b) | 2020-02-25 | 9 | -44/+24 | |
| | | | | | ok jsing jca florian | ||||
| * | unused file | 2020-02-25 | 1 | -59/+0 | |
| | | |||||
| * | declare isc_appctx_t once where it is used | 2020-02-25 | 2 | -9/+2 | |
| | | | | | | Should fix typedef redefinition build error on gcc3 reported by aoyama@. ok florian@ | ||||
| * | Do not generate dns_rdatatype_attributes and dns_rdatatype_totext. | 2020-02-25 | 2 | -36/+360 | |
| | | | | | OK jung | ||||
| * | reduce multiple newlines | 2020-02-25 | 120 | -604/+91 | |
| | | |||||
| * | remove some unused typedefs | 2020-02-25 | 3 | -21/+2 | |
| | | |||||
| * | remove some unused defines | 2020-02-25 | 1 | -15/+0 | |
| | | |||||
| * | Stop generating rdatastruct.h and put the dns_rdata_* structs for | 2020-02-24 | 85 | -2561/+47 | |
| | | | | | cname, ns, soa, and tsig directly into rdata.h | ||||
| * | Delete a few more fromstruct_*, tostruct_* and freestruct_* functions | 2020-02-24 | 6 | -356/+4 | |
| | | | | | missed in previous. Also delete now unused utility functions. | ||||
| * | We only need to create cname, ns, soa and tsig structs. | 2020-02-24 | 78 | -2239/+134 | |
| | | | | | OK jsg | ||||
| * | We only need to fill a wire format buffer from soa and tsig structs. | 2020-02-24 | 80 | -1545/+128 | |
| | | | | | OK jsg | ||||
| * | We only need to free cname, ns, soa and tsig structs. | 2020-02-24 | 78 | -791/+117 | |
| | | | | | OK jsg | ||||
| * | We are never required to "render glue first" since we just print what | 2020-02-24 | 2 | -39/+2 | |
| | | | | | we get from the net. | ||||
| * | dead store, pointed out by scan build | 2020-02-24 | 1 | -11/+1 | |
| | | |||||
| * | totext_filter_proc is always null, remove. | 2020-02-24 | 2 | -21/+2 | |
| | | |||||
| * | remove some unused code | 2020-02-24 | 8 | -399/+6 | |
| | | | | | ok florian@ | ||||
| * | remove some uneeded includes | 2020-02-24 | 16 | -58/+32 | |
| | | |||||
| * | We only need to check the owner for nsec3 records, remove all the | 2020-02-24 | 82 | -1033/+61 | |
| | | | | | | rest. OK jung | ||||
| * | We are always preserving the order of records. | 2020-02-24 | 83 | -2496/+86 | |
| | | | | | | | This lets us remove compare_* and casecompare_* functions from RR types. OK jung | ||||
| * | Stop generating DNS class and type enums. | 2020-02-24 | 2 | -11/+95 | |
| | | | | | OK jsg, jung | ||||
| * | Fix 'previously declared here' error on gcc3(luna88k). | 2020-02-24 | 3 | -10/+1 | |
| | | | | | ok jsg@ florian@ jung@ | ||||
| * | remove some unused functions | 2020-02-23 | 6 | -140/+6 | |
| | | | | | ok jung@ | ||||
| * | rmeove more unused functions and code | 2020-02-23 | 95 | -3879/+66 | |
| | | | | | ok florian | ||||
| * | remove unused parts of types.h | 2020-02-23 | 2 | -189/+1 | |
| | | | | | ok jung@ florian@ | ||||
| * | We never request to clone the buffer from the message parser. | 2020-02-23 | 2 | -14/+2 | |
| | | | | | OK millert | ||||
| * | We are not passing options to the message renderer. | 2020-02-23 | 2 | -38/+11 | |
| | | | | | OK millert | ||||
| * | Partial rendering was never implemented. | 2020-02-23 | 4 | -108/+20 | |
| | | | | | OK millert | ||||
| * | Remove unused fields from struct dst_key and stop passing name and | 2020-02-23 | 4 | -95/+20 | |
| | | | | | | rdclass around. OK millert, jung | ||||
| * | hmacs do not support NULL keys | 2020-02-23 | 2 | -24/+3 | |
| | | | | | OK millert, jung | ||||
| * | All key funcs are populated, skip NULL check. | 2020-02-23 | 3 | -62/+4 | |
| | | | | | | While here remove *_isprivate since it is always true. OK millert, jung | ||||
| * | createctx2, verify2, and cleanup are always NULL. | 2020-02-23 | 4 | -108/+6 | |
| | | | | | OK millert, jung | ||||
| * | Remove unused hmac functions from struct dst_func which in turn lets | 2020-02-23 | 5 | -1050/+5 | |
| | | | | | | us delete parsing of private keys from files. OK millert, jung | ||||
| * | remove unused structs | 2020-02-23 | 2 | -36/+2 | |
| | | |||||
| * | remove unused dns_rdatacallbacks struct and typedef | 2020-02-23 | 3 | -73/+1 | |
| | | |||||
| * | remove various unused macros | 2020-02-22 | 5 | -51/+4 | |
| | | | | | ok florian | ||||
| * | remove some unused args and unused assignments, as result | 2020-02-22 | 6 | -64/+30 | |
| | | | | | | | | | | msgblock_free() becomes just free() also add UNUSED() for some dns_message *msg args for later revisit and cleanup ok millert florian | ||||
| * | remove assigned but unused values | 2020-02-22 | 4 | -18/+3 | |
| | | | | | ok millert florian | ||||
| * | remove unused code | 2020-02-22 | 20 | -843/+16 | |
| | | | | | ok millert florian | ||||
| * | Read CLOCK_MONOTONIC when we need timestamps to compare and use | 2020-02-21 | 3 | -13/+13 | |
| | | | | | | time(3) for the wall clock. prodding & OK jung | ||||
