summaryrefslogtreecommitdiffstats
path: root/usr.bin/dig/lib/isc/buffer.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* In preparation of compiling lib/dns/rdata/ files individually we needflorian2020-02-261-1/+18
| | | | | | 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 needflorian2020-02-261-1/+13
| | | | | | global visibility of mem_tobuffer. Rename it to isc_mem_tobuffer, put it into buffer.c and delete duplicate implementations.
* reduce multiple newlinesjsg2020-02-251-2/+1
|
* remove assigned but unused valuesjung2020-02-221-3/+1
| | | | ok millert florian
* remove unused codejung2020-02-221-51/+1
| | | | ok millert florian
* Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros.florian2020-02-181-34/+1
| | | | | | | 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 some unreferenced functionsjsg2020-02-121-45/+1
| | | | ok florian@
* Move dig(1) and needed DNS libraries into it's own source directory inflorian2020-02-071-0/+484
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