| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | We have sockaddr_storage these days, get rid of isc_sockaddr_t. | 2020-09-15 | 1 | -16/+16 | |
| | | | | | OK beck, "beautiful" deraadt | ||||
| * | The various sockaddr structures have length fields these days. | 2020-09-15 | 1 | -4/+4 | |
| | | | | | OK beck | ||||
| * | Mechanically replace isc_boolean_t with int. | 2020-09-14 | 4 | -30/+29 | |
| | | | | | OK deraadt | ||||
| * | Bunch of dead stores and otherwise unused stuff lets us get rid of | 2020-09-14 | 4 | -164/+3 | |
| | | | | | | | unix/net.{c.h}. We need to sprinkle in a few #includes that net.h dragged in. OK deraadt | ||||
| * | Rewrite isc_time_microdiff() as uelapsed() and put it directly | 2020-09-14 | 4 | -94/+8 | |
| | | | | | | into dig sources, lets us get rid of unix/time.{c,h} OK deraadt | ||||
| * | fix socket_log() calls, EVENT expands to three comma separated | 2020-05-10 | 1 | -4/+4 | |
| | | | | | values; spotted by gcc; ok florian@ | ||||
| * | Make sure cmsgbufs are properly aligned by using the idiom from the | 2020-05-08 | 1 | -5/+15 | |
| | | | | | CMSG_DATA man page. Avoids SIGBUS on landisk; ok kettenis@ jca@ | ||||
| * | malloc(a * b) -> reallocarray(NULL, a, b) | 2020-02-25 | 1 | -2/+2 | |
| | | | | | ok jsing jca florian | ||||
| * | reduce multiple newlines | 2020-02-25 | 1 | -2/+0 | |
| | | |||||
| * | remove some uneeded includes | 2020-02-24 | 1 | -1/+1 | |
| | | |||||
| * | Fix 'previously declared here' error on gcc3(luna88k). | 2020-02-24 | 1 | -3/+0 | |
| | | | | | ok jsg@ florian@ jung@ | ||||
| * | remove assigned but unused values | 2020-02-22 | 1 | -6/+0 | |
| | | | | | ok millert florian | ||||
| * | Read CLOCK_MONOTONIC when we need timestamps to compare and use | 2020-02-21 | 1 | -1/+1 | |
| | | | | | | time(3) for the wall clock. prodding & OK jung | ||||
| * | simplify signal setup and remove block/unblock/is_running/reload | 2020-02-19 | 1 | -133/+4 | |
| | | | | | | | with input from florian ok millert florian | ||||
| * | Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros. | 2020-02-18 | 3 | -371/+140 | |
| | | | | | | | | 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 | 2 | -57/+0 | |
| | | | | | OK millert | ||||
| * | isc_stdio_open() wrapper function is only called in lex'er | 2020-02-17 | 2 | -38/+2 | |
| | | | | | | | so call fopen() directly and drop it ok florian | ||||
| * | remove unused code | 2020-02-17 | 2 | -7/+0 | |
| | | | | | ok florian | ||||
| * | Get rid of isc_stdtime_t and use time_t directly. | 2020-02-16 | 3 | -103/+2 | |
| | | | | | OK millert | ||||
| * | cleanup | 2020-02-16 | 2 | -24/+4 | |
| | | | | | OK millert | ||||
| * | clock_gettime cannot fail if called correctly; unravel TIME_NOW | 2020-02-16 | 3 | -30/+3 | |
| | | | | | | | | 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 | ||||
| * | Move isc_time_formathttptimestamp to the only place it is used. | 2020-02-16 | 2 | -40/+2 | |
| | | | | | OK millert | ||||
| * | unravel isc_time_formattimestamp | 2020-02-16 | 2 | -41/+4 | |
| | | | | | OK millert | ||||
| * | unravel isc_time_add and isc_time_subtract | 2020-02-16 | 2 | -50/+2 | |
| | | | | | OK millert | ||||
| * | unravel isc_time_compare | 2020-02-16 | 2 | -34/+2 | |
| | | | | | OK millert | ||||
| * | unravel isc_time_isepoch | 2020-02-16 | 2 | -24/+2 | |
| | | | | | OK millert | ||||
| * | remove timespec setters | 2020-02-16 | 2 | -50/+2 | |
| | | | | | OK millert | ||||
| * | Reduce interval indirection by setting struct members directly and | 2020-02-16 | 2 | -51/+3 | |
| | | | | | | using macros from sys/time.h OK millert | ||||
| * | The timer type we are using requires interval to be set, remove | 2020-02-16 | 2 | -11/+2 | |
| | | | | | | unused interval_zero. OK millert | ||||
| * | Replace isc_time_t and interval_t with struct timespec. | 2020-02-16 | 4 | -198/+65 | |
| | | | | | Input & OK millert | ||||
| * | Now we are only using one timer type (once) and expires is always NULL | 2020-02-16 | 2 | -7/+2 | |
| | | | | | | so remove those struct members. OK millert | ||||
| * | remove unused lockid var and FDLOCK_ID macro | 2020-02-15 | 1 | -7/+0 | |
| | | |||||
| * | threads are gone, replace thread safe isc__strerror() wrapper | 2020-02-13 | 7 | -137/+26 | |
| | | | | | | | with strerror() and drop it ok millert florian | ||||
| * | expand ISC_FORMAT_PRINTF and get rid of formatcheck.h | 2020-02-13 | 1 | -2/+2 | |
| | | |||||
| * | remove macros which defined extern "C" for C++ | 2020-02-13 | 5 | -33/+4 | |
| | | | | | ok florian@ | ||||
| * | remove more uneeded include statements and files | 2020-02-13 | 5 | -14/+5 | |
| | | |||||
| * | remove unused macros | 2020-02-13 | 1 | -13/+0 | |
| | | | | | ok florian@ | ||||
| * | use libc inet_aton(3) | 2020-02-13 | 1 | -6/+1 | |
| | | | | | ok florian@ benno@ jung@ | ||||
| * | trust gettimeofday doing the right thing | 2020-02-13 | 2 | -88/+2 | |
| | | |||||
| * | remove some unreferenced functions | 2020-02-12 | 4 | -199/+4 | |
| | | | | | ok florian@ | ||||
| * | remove uneeded #include lines | 2020-02-11 | 6 | -21/+4 | |
| | | | | | ok florian@ | ||||
| * | unifdef feature checks; we have all these things. | 2020-02-11 | 3 | -49/+2 | |
| | | | | | OK millert | ||||
| * | Move dig(1) and needed DNS libraries into it's own source directory in | 2020-02-07 | 16 | -0/+4803 | |
| 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 | |||||
