summaryrefslogtreecommitdiffstats
path: root/usr.bin/dig/lib/isc/task.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* reduce multiple newlinesjsg2020-02-251-5/+0
|
* Fix 'previously declared here' error on gcc3(luna88k).aoyama2020-02-241-3/+0
| | | | ok jsg@ florian@ jung@
* remove unused codejung2020-02-221-114/+0
| | | | ok millert florian
* remove unreachable codejung2020-02-191-4/+0
| | | | ok millert florian
* Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros.florian2020-02-181-428/+77
| | | | | | | 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.florian2020-02-181-43/+0
| | | | OK millert
* Get rid of isc_stdtime_t and use time_t directly.florian2020-02-161-6/+7
| | | | OK millert
* remove task and timer tracingflorian2020-02-131-50/+0
|
* remove more uneeded include statements and filesjsg2020-02-131-1/+0
|
* remove some unreferenced functionsjsg2020-02-121-113/+0
| | | | ok florian@
* remove uneeded #include linesjsg2020-02-111-1/+0
| | | | ok florian@
* Move dig(1) and needed DNS libraries into it's own source directory inflorian2020-02-071-0/+1513
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