| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rewrite parse_netprefix to no longer use isc_sockaddr_fromin{,6}. | 2020-12-21 | 1 | -15/+1 | |
| | | | | | | Since this was the last user of those functions we can delete them. OK otto | ||||
| * | We have sockaddr_storage these days, get rid of isc_sockaddr_t. | 2020-09-15 | 3 | -36/+25 | |
| | | | | | OK beck, "beautiful" deraadt | ||||
| * | The various sockaddr structures have length fields these days. | 2020-09-15 | 1 | -2/+1 | |
| | | | | | OK beck | ||||
| * | we no longer need isc_netaddr_t | 2020-09-15 | 2 | -79/+1 | |
| | | | | | OK beck, deraadt (who also OK'ed the previous two diffs) | ||||
| * | move islinklocal, ismulticast, issitelocal from netaddr to sockaddr | 2020-09-15 | 1 | -19/+1 | |
| | | | | | OK beck | ||||
| * | Mechanically replace isc_boolean_t with int. | 2020-09-14 | 12 | -88/+50 | |
| | | | | | OK deraadt | ||||
| * | Bunch of dead stores and otherwise unused stuff lets us get rid of | 2020-09-14 | 2 | -5/+9 | |
| | | | | | | | unix/net.{c.h}. We need to sprinkle in a few #includes that net.h dragged in. OK deraadt | ||||
| * | Get rid of isc_parse_uint32() and replace it with strtonum. | 2020-09-13 | 1 | -53/+0 | |
| | | | | | | | While here use the standard strtonum error messages. input & OK beck, OK kn | ||||
| * | remove unused LEX_OPTs | 2020-09-13 | 1 | -18/+2 | |
| | | |||||
| * | In preparation of compiling lib/dns/rdata/ files individually we need | 2020-02-26 | 1 | -1/+5 | |
| | | | | | | | 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 | 1 | -1/+3 | |
| | | | | | | | global visibility of mem_tobuffer. Rename it to isc_mem_tobuffer, put it into buffer.c and delete duplicate implementations. | ||||
| * | use timingsafe_bcmp and get rid of now unused safe.c | 2020-02-25 | 1 | -35/+0 | |
| | | |||||
| * | malloc(a * b) -> reallocarray(NULL, a, b) | 2020-02-25 | 1 | -13/+1 | |
| | | | | | ok jsing jca florian | ||||
| * | 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@ | ||||
| * | reduce multiple newlines | 2020-02-25 | 10 | -27/+10 | |
| | | |||||
| * | remove some unused typedefs | 2020-02-25 | 1 | -7/+1 | |
| | | |||||
| * | remove some unused code | 2020-02-24 | 1 | -25/+1 | |
| | | | | | ok florian@ | ||||
| * | remove some uneeded includes | 2020-02-24 | 3 | -7/+7 | |
| | | |||||
| * | remove some unused functions | 2020-02-23 | 2 | -39/+2 | |
| | | | | | ok jung@ | ||||
| * | remove unused parts of types.h | 2020-02-23 | 1 | -2/+1 | |
| | | | | | ok jung@ florian@ | ||||
| * | remove unused structs | 2020-02-23 | 1 | -14/+1 | |
| | | |||||
| * | remove unused code | 2020-02-22 | 6 | -373/+5 | |
| | | | | | ok millert florian | ||||
| * | simplify signal setup and remove block/unblock/is_running/reload | 2020-02-19 | 2 | -45/+2 | |
| | | | | | | | with input from florian ok millert florian | ||||
| * | Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros. | 2020-02-18 | 6 | -192/+5 | |
| | | | | | | | | 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 | 3 | -88/+3 | |
| | | | | | OK millert | ||||
| * | isc_stdio_open() wrapper function is only called in lex'er | 2020-02-17 | 1 | -41/+0 | |
| | | | | | | | so call fopen() directly and drop it ok florian | ||||
| * | remove unused code | 2020-02-17 | 9 | -370/+12 | |
| | | | | | ok florian | ||||
| * | Get rid of isc_stdtime_t and use time_t directly. | 2020-02-16 | 1 | -4/+1 | |
| | | | | | OK millert | ||||
| * | clock_gettime cannot fail if called correctly; unravel TIME_NOW | 2020-02-16 | 1 | -6/+1 | |
| | | | | | | | | 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 | ||||
| * | unravel isc_time_add and isc_time_subtract | 2020-02-16 | 1 | -6/+2 | |
| | | | | | OK millert | ||||
| * | Replace isc_time_t and interval_t with struct timespec. | 2020-02-16 | 3 | -9/+7 | |
| | | | | | Input & OK millert | ||||
| * | Now we are only using one timer type (once) and expires is always NULL | 2020-02-16 | 1 | -18/+1 | |
| | | | | | | so remove those struct members. OK millert | ||||
| * | We only use isc_timertype_once, get rid of all other types. | 2020-02-16 | 1 | -6/+2 | |
| | | | | | OK millert | ||||
| * | remove unused file | 2020-02-16 | 1 | -141/+0 | |
| | | |||||
| * | remove unused function | 2020-02-15 | 1 | -9/+1 | |
| | | |||||
| * | timer methods are unused | 2020-02-15 | 1 | -26/+1 | |
| | | |||||
| * | Get rid of "discards (const) qualifiers" warning in a less convoluted way. | 2020-02-15 | 1 | -8/+1 | |
| | | | | | | OK schwarze who points out that sufficiently excessive compiler warning settings will still warn for a straight forward (void *) cast. | ||||
| * | expand ISC_FORMAT_PRINTF and get rid of formatcheck.h | 2020-02-13 | 4 | -51/+12 | |
| | | |||||
| * | unifdef ISC_LIST_CHECKINIT | 2020-02-13 | 1 | -14/+1 | |
| | | |||||
| * | remove macros which defined extern "C" for C++ | 2020-02-13 | 31 | -218/+27 | |
| | | | | | ok florian@ | ||||
| * | remove more uneeded include statements and files | 2020-02-13 | 6 | -45/+5 | |
| | | |||||
| * | unfidef assertions.h to always have assertions enabled; no change | 2020-02-13 | 1 | -51/+1 | |
| | | | | | | | | 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. | ||||
| * | remove some files containing only comments | 2020-02-12 | 2 | -76/+0 | |
| | | |||||
| * | remove some unreferenced functions | 2020-02-12 | 16 | -832/+13 | |
| | | | | | ok florian@ | ||||
| * | remove uneeded include files | 2020-02-11 | 2 | -232/+0 | |
| | | | | | ok florian@ | ||||
| * | Pretty sure sha1 works most of the time, no need to check during | 2020-02-11 | 2 | -9/+2 | |
| | | | | | runtime. | ||||
| * | Move dig(1) and needed DNS libraries into it's own source directory in | 2020-02-07 | 46 | -0/+8337 | |
| usr.bin/dig. From the beginning when we started to remove unneeded nameserver code, it was our goal to extract dig functionality from the bind sources, for everyone's benefit as this is easier to reason about. In total we removed about 2/3 or over 300.000 lines of code. We kept the lib/ subdirectory layout but moved the content of bin/ to the top from the old bind source directory. Previous sources and history can be found in the src/usr.sbin/bind Attic. With & OK deraadt Proposed directory layout sounds good to sthen | |||||
