| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | We do not generate DNS records from text representations. | 2020-02-20 | 81 | -4397/+56 | ||
| | | | | | OK millert | |||||
| * | Remove support for reading tsig keys from dnssec key pair. | 2020-02-20 | 2 | -365/+2 | ||
| | | | | | | | | | | | | | | This was accidentally broken some time ago. Arguably this was the least useful way of providing tsig keys to dig. ISC also removed generating tsig keys from dnssec-keygen in 9.13. To read the key from disk using the -k option it has to be provided as as a session key: key "keyname" { algorithm hmac-sha256; secret "[...]"; }; OK millert | |||||
| * | simplify signal setup and remove block/unblock/is_running/reload | 2020-02-19 | 3 | -178/+6 | ||
| | | | | | | | with input from florian ok millert florian | |||||
| * | remove unreachable code | 2020-02-19 | 1 | -4/+0 | ||
| | | | | | ok millert florian | |||||
| * | Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros. | 2020-02-18 | 39 | -1716/+295 | ||
| | | | | | | | | While pulling on that it turns out we can / need git rid of a isc_task -> isc__task, isc_taskmgr -> isc__taskmgr, isc_timer -> isc__timer and isc_socket -> isc__socket indirection. OK millert | |||||
| * | Remove unused task, taskmgr, app, socket and socketmgr methods. | 2020-02-18 | 6 | -188/+3 | ||
| | | | | | OK millert | |||||
| * | isc_stdio_open() wrapper function is only called in lex'er | 2020-02-17 | 5 | -87/+10 | ||
| | | | | | | | so call fopen() directly and drop it ok florian | |||||
| * | remove unused code | 2020-02-17 | 20 | -1128/+22 | ||
| | | | | | ok florian | |||||
| * | Get rid of isc_stdtime_t and use time_t directly. | 2020-02-16 | 12 | -170/+52 | ||
| | | | | | OK millert | |||||
| * | cleanup | 2020-02-16 | 2 | -24/+4 | ||
| | | | | | OK millert | |||||
| * | clock_gettime cannot fail if called correctly; unravel TIME_NOW | 2020-02-16 | 6 | -45/+13 | ||
| | | | | | | | | indirections. (I'm not convinced that we always want to read CLOCK_REALTIME, in fact we probably want to almost always read CLOCK_MONOTONIC.) OK millert | |||||
| * | Move isc_time_formathttptimestamp to the only place it is used. | 2020-02-16 | 3 | -40/+21 | ||
| | | | | | OK millert | |||||
| * | unravel isc_time_formattimestamp | 2020-02-16 | 3 | -46/+9 | ||
| | | | | | OK millert | |||||
| * | unravel isc_time_add and isc_time_subtract | 2020-02-16 | 5 | -88/+17 | ||
| | | | | | OK millert | |||||
| * | unravel isc_time_compare | 2020-02-16 | 4 | -58/+16 | ||
| | | | | | OK millert | |||||
| * | unravel isc_time_isepoch | 2020-02-16 | 3 | -26/+4 | ||
| | | | | | OK millert | |||||
| * | remove timespec setters | 2020-02-16 | 4 | -56/+11 | ||
| | | | | | OK millert | |||||
| * | Reduce interval indirection by setting struct members directly and | 2020-02-16 | 4 | -60/+11 | ||
| | | | | | | using macros from sys/time.h OK millert | |||||
| * | The timer type we are using requires interval to be set, remove | 2020-02-16 | 3 | -18/+5 | ||
| | | | | | | unused interval_zero. OK millert | |||||
| * | Replace isc_time_t and interval_t with struct timespec. | 2020-02-16 | 11 | -234/+99 | ||
| | | | | | Input & OK millert | |||||
| * | Now we are only using one timer type (once) and expires is always NULL | 2020-02-16 | 4 | -103/+34 | ||
| | | | | | | so remove those struct members. OK millert | |||||
| * | We only use isc_timertype_once, get rid of all other types. | 2020-02-16 | 2 | -84/+22 | ||
| | | | | | OK millert | |||||
| * | remove unused file | 2020-02-16 | 1 | -141/+0 | ||
| | | ||||||
| * | remove unused function | 2020-02-15 | 2 | -17/+2 | ||
| | | ||||||
| * | timer methods are unused | 2020-02-15 | 2 | -57/+2 | ||
| | | ||||||
| * | test pointers against NULL not 0 | 2020-02-15 | 1 | -1/+1 | ||
| | | ||||||
| * | remove unused lockid var and FDLOCK_ID macro | 2020-02-15 | 1 | -7/+0 | ||
| | | ||||||
| * | unifdef VALREGEX_REPORT_REASON, it doesn't provide much clarity. | 2020-02-15 | 1 | -40/+25 | ||
| | | ||||||
| * | Get rid of "discards (const) qualifiers" warning in a less convoluted way. | 2020-02-15 | 2 | -10/+3 | ||
| | | | | | | OK schwarze who points out that sufficiently excessive compiler warning settings will still warn for a straight forward (void *) cast. | |||||
| * | threads are gone, replace thread safe isc__strerror() wrapper | 2020-02-13 | 7 | -137/+26 | ||
| | | | | | | | with strerror() and drop it ok millert florian | |||||
| * | expand ISC_FORMAT_PRINTF and get rid of formatcheck.h | 2020-02-13 | 11 | -66/+27 | ||
| | | ||||||
| * | unifdef CHECK; not sure why cppcheck would only trip over this macro, | 2020-02-13 | 1 | -11/+1 | ||
| | | | | | this .c file uses a bunch of other macros only defined in rdata.c. | |||||
| * | remove task and timer tracing | 2020-02-13 | 2 | -64/+1 | ||
| | | ||||||
| * | unifdef ISC_LIST_CHECKINIT | 2020-02-13 | 1 | -14/+1 | ||
| | | ||||||
| * | While we do have AF_UNIX support, dig doesn't use it. | 2020-02-13 | 2 | -31/+2 | ||
| | | ||||||
| * | Move DNS_NAME_INITABSOLUTE and DNS_NAME_INITNONABSOLUTE to a comon | 2020-02-13 | 4 | -52/+20 | ||
| | | | | | header to not have multiple copies. | |||||
| * | remove macros which defined extern "C" for C++ | 2020-02-13 | 73 | -473/+62 | ||
| | | | | | ok florian@ | |||||
| * | remove more uneeded include statements and files | 2020-02-13 | 26 | -159/+25 | ||
| | | ||||||
| * | remove unused macros | 2020-02-13 | 10 | -59/+7 | ||
| | | | | | ok florian@ | |||||
| * | No need for "high performance" macros. | 2020-02-13 | 3 | -98/+27 | ||
| | | | | | | | While here drop name_length() function and replace it with name->length. (Found because clang now complained that we are dropping a const qualifier). | |||||
| * | use libc inet_aton(3) | 2020-02-13 | 3 | -199/+3 | ||
| | | | | | ok florian@ benno@ jung@ | |||||
| * | remove unused define | 2020-02-13 | 1 | -5/+1 | ||
| | | ||||||
| * | we do not have gost | 2020-02-13 | 1 | -19/+1 | ||
| | | ||||||
| * | trust gettimeofday doing the right thing | 2020-02-13 | 2 | -88/+2 | ||
| | | ||||||
| * | remove ISC_HEAP_CHECK knob, it was never turned | 2020-02-13 | 1 | -19/+1 | ||
| | | ||||||
| * | it has been 16 years... | 2020-02-13 | 1 | -5/+1 | ||
| | | ||||||
| * | unifdef SKAN_MSG_DEBUG, it was never defined | 2020-02-13 | 1 | -60/+1 | ||
| | | ||||||
| * | remove DNS_RDATA_CHECKINITIALIZED knob | 2020-02-13 | 1 | -10/+0 | ||
| | | ||||||
| * | We are not interested in working around shortcomings of ancient | 2020-02-13 | 2 | -25/+2 | ||
| | | | | | versions of the clang static analyzer. | |||||
| * | unfidef assertions.h to always have assertions enabled; no change | 2020-02-13 | 3 | -62/+3 | ||
| | | | | | | | | in behaviour. While here unifdef one remaining __COVERITY__. While we might want to move away from assertions we can't just nuke them since they are used for error checking. | |||||
