summaryrefslogtreecommitdiffstats
path: root/usr.bin/dig/lib/isc (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* The timer type we are using requires interval to be set, removeflorian2020-02-163-18/+5
| | | | | unused interval_zero. OK millert
* Replace isc_time_t and interval_t with struct timespec.florian2020-02-1610-233/+98
| | | | Input & OK millert
* Now we are only using one timer type (once) and expires is always NULLflorian2020-02-164-103/+34
| | | | | so remove those struct members. OK millert
* We only use isc_timertype_once, get rid of all other types.florian2020-02-162-84/+22
| | | | OK millert
* remove unused filejsg2020-02-161-141/+0
|
* remove unused functionflorian2020-02-152-17/+2
|
* timer methods are unusedflorian2020-02-152-57/+2
|
* remove unused lockid var and FDLOCK_ID macrojsg2020-02-151-7/+0
|
* unifdef VALREGEX_REPORT_REASON, it doesn't provide much clarity.florian2020-02-151-40/+25
|
* Get rid of "discards (const) qualifiers" warning in a less convoluted way.florian2020-02-151-8/+1
| | | | | 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() wrapperjung2020-02-137-137/+26
| | | | | | with strerror() and drop it ok millert florian
* expand ISC_FORMAT_PRINTF and get rid of formatcheck.hflorian2020-02-137-58/+19
|
* remove task and timer tracingflorian2020-02-132-64/+1
|
* unifdef ISC_LIST_CHECKINITflorian2020-02-131-14/+1
|
* While we do have AF_UNIX support, dig doesn't use it.florian2020-02-132-31/+2
|
* remove macros which defined extern "C" for C++jsg2020-02-1336-251/+31
| | | | ok florian@
* remove more uneeded include statements and filesjsg2020-02-1318-68/+16
|
* remove unused macrosjsg2020-02-134-26/+3
| | | | ok florian@
* use libc inet_aton(3)jsg2020-02-133-199/+3
| | | | ok florian@ benno@ jung@
* trust gettimeofday doing the right thingflorian2020-02-132-88/+2
|
* remove ISC_HEAP_CHECK knob, it was never turnedflorian2020-02-131-19/+1
|
* unfidef assertions.h to always have assertions enabled; no changeflorian2020-02-132-53/+2
| | | | | | | 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 commentsjsg2020-02-125-145/+3
|
* remove some unreferenced functionsjsg2020-02-1235-2033/+30
| | | | ok florian@
* remove uneeded include filesjsg2020-02-112-232/+0
| | | | ok florian@
* remove uneeded #include linesjsg2020-02-1121-68/+24
| | | | ok florian@
* Pretty sure sha1 works most of the time, no need to check duringflorian2020-02-114-122/+5
| | | | runtime.
* unifdef feature checks; we have all these things.florian2020-02-115-71/+4
| | | | OK millert
* Move dig(1) and needed DNS libraries into it's own source directory inflorian2020-02-0798-0/+23886
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