summaryrefslogtreecommitdiffstats
path: root/usr.bin/dig/lib (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* expand ISC_FORMAT_PRINTF and get rid of formatcheck.hflorian2020-02-1311-66/+27
|
* unifdef CHECK; not sure why cppcheck would only trip over this macro,florian2020-02-131-11/+1
| | | | this .c file uses a bunch of other macros only defined in rdata.c.
* 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
|
* Move DNS_NAME_INITABSOLUTE and DNS_NAME_INITNONABSOLUTE to a comonflorian2020-02-134-52/+20
| | | | header to not have multiple copies.
* remove macros which defined extern "C" for C++jsg2020-02-1373-473/+62
| | | | ok florian@
* remove more uneeded include statements and filesjsg2020-02-1326-159/+25
|
* remove unused macrosjsg2020-02-1310-59/+7
| | | | ok florian@
* No need for "high performance" macros.florian2020-02-133-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)jsg2020-02-133-199/+3
| | | | ok florian@ benno@ jung@
* remove unused defineflorian2020-02-131-5/+1
|
* we do not have gostflorian2020-02-131-19/+1
|
* trust gettimeofday doing the right thingflorian2020-02-132-88/+2
|
* remove ISC_HEAP_CHECK knob, it was never turnedflorian2020-02-131-19/+1
|
* it has been 16 years...florian2020-02-131-5/+1
|
* unifdef SKAN_MSG_DEBUG, it was never definedflorian2020-02-131-60/+1
|
* remove DNS_RDATA_CHECKINITIALIZED knobflorian2020-02-131-10/+0
|
* We are not interested in working around shortcomings of ancientflorian2020-02-132-25/+2
| | | | versions of the clang static analyzer.
* unfidef assertions.h to always have assertions enabled; no changeflorian2020-02-133-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.
* remove some files containing only commentsjsg2020-02-126-148/+4
|
* remove some unreferenced functionsjsg2020-02-1279-5621/+61
| | | | ok florian@
* Prevent double free in error path; pointed out by scan-build.florian2020-02-121-1/+2
|
* remove uneeded include filesjsg2020-02-112-232/+0
| | | | ok florian@
* remove uneeded #include linesjsg2020-02-1139-136/+39
| | | | ok florian@
* Replace SIZE defines with sizeof.florian2020-02-112-19/+7
| | | | | While here replace memmove with memcpy, the arguments do not overlap. OK millert, deraadt
* Pretty sure sha1 works most of the time, no need to check duringflorian2020-02-115-129/+6
| | | | runtime.
* Remove unused functionality from dst_api.c.florian2020-02-116-1093/+8
| | | | OK millert
* 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-07324-0/+80203
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