| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Finish moving of dig(1) to /usr/bin/dig by removing the sources in the | 2020-02-11 | 335 | -90315/+0 | |
| | | | | | | old location. dig(1) sources can be found in src/usr.bin/dig. ok deraadt@ | ||||
| * | Replace atoi with strtonum for stricter and safer integer parsing. | 2020-02-05 | 1 | -9/+15 | |
| | | | | | | | | | | | | | | | | | -N ndots: 0, INT_MAX The upper limit is a bit silly, everything bigger than a small number will force domain names to be interpretet as relative. -R retries INT_MIN, INT_MAX - 1 Specifically documented to accept negative numbers. -W wait 0, INT_MAX One could interpret the documentation as meaning that it accepts negative numbers but that failes later on with an error message from the timer code.. with deraadt, OK kn, input & OK tedu | ||||
| * | iterated_hash is unused | 2020-02-04 | 7 | -107/+7 | |
| | | |||||
| * | bit.h and events.h are unused. | 2020-02-04 | 4 | -136/+2 | |
| | | |||||
| * | lwres no longer deals with lists. | 2020-02-04 | 2 | -126/+1 | |
| | | |||||
| * | Nothing sets DNS_RDATASETATTR_NEGATIVE; remove code dealing with that | 2020-02-04 | 6 | -762/+5 | |
| | | | | | and then remove ncache.c. | ||||
| * | dig is not generating DS records. | 2020-02-04 | 3 | -150/+3 | |
| | | |||||
| * | keydata.c is unused. | 2020-02-04 | 3 | -135/+2 | |
| | | |||||
| * | soa.c is unused. | 2020-02-04 | 3 | -249/+2 | |
| | | |||||
| * | We are not going to generate nsec or nsec3 RRsets. | 2020-02-04 | 6 | -1104/+3 | |
| | | |||||
| * | dig(1) only needs tsig support so we can delete all non-HMAC | 2020-02-04 | 8 | -1663/+7 | |
| | | | | | crypto code. | ||||
| * | isc/stat.h is unused | 2020-02-04 | 3 | -56/+2 | |
| | | |||||
| * | just use netdb.h directly | 2020-02-04 | 3 | -72/+9 | |
| | | |||||
| * | Remove unused typedefs that got left behind in previous | 2020-02-04 | 12 | -152/+21 | |
| | | | | | | | | | shreddings from types.h and get rid of offset.h while here by just using off_t in the one place where it's needed. However offset.h brought in limits.h and sys/types.h so sprinkle some includes over the tree to have various _MAX and intX_t defined. | ||||
| * | Get rid of getopt(3) compat code. | 2020-02-04 | 5 | -295/+30 | |
| | | |||||
| * | Remove a bunch of unused functions who access the filesystem and then | 2020-02-04 | 8 | -416/+7 | |
| | | | | | get rid of lib/isc/unix/dir.c | ||||
| * | We are not going to generate sig0 records so we can rip out the | 2020-02-04 | 5 | -1931/+5 | |
| | | | | | sig0key which in turn lets us delete all of dnssec.c | ||||
| * | Use opendir(3) to not depend on lib/isc/unix/dir.c. | 2020-02-04 | 2 | -113/+24 | |
| | | | | | No change in generated .h files in obj. | ||||
| * | unused | 2020-02-04 | 1 | -16/+0 | |
| | | |||||
| * | We are not using aes. | 2020-02-04 | 3 | -134/+2 | |
| | | |||||
| * | Remove unused files. | 2020-02-04 | 5 | -49/+0 | |
| | | |||||
| * | Nuke autohell from orbit. It's the only way to be sure. | 2020-01-28 | 40 | -40478/+0 | |
| | | | | | OK sthen | ||||
| * | Switch to Makefile based builds. | 2020-01-28 | 36 | -235/+153 | |
| | | | | | | | | | Delete a bunch of files that were no longer built but still lying around. Since there are no subdirectories below obj any more we need to prefix dns/{log,time,result}.c with dns_ to not conflict with the same names used by lib/isc/. OK sthen | ||||
| * | We only need to be able to parse tsig key files, rip out all the rest | 2020-01-28 | 9 | -5614/+99 | |
| | | | | | | from the parser. OK sthen | ||||
| * | Support for queries on ports != 53 | 2020-01-26 | 4 | -7/+7 | |
| | | | | | | | | | | | | | | | - dig(1) -p now works, as already supported by dig(1) from ports/net/isc-bind thanks to sthen@ - "set port=..." also works in nslookup(1) - host(1) has no support for alternate destination ports This adds "inet" to the pledge promises of all three programs, a compromise deemed reasonable and suggested by deraadt@; instead of slightly more complicated patches by myself and florian@ to avoid "inet" in the general case. Suggested by deraadt@, ok florian@ sthen@ | ||||
| * | Remove unused code from socket.c | 2020-01-26 | 3 | -1229/+20 | |
| | | | | | OK tedu | ||||
| * | reduce isc/stdio to what is used | 2020-01-26 | 2 | -146/+2 | |
| | | | | | OK tedu | ||||
| * | get rid of lib/isc/nothreads | 2020-01-26 | 19 | -429/+10 | |
| | | | | | OK tedu | ||||
| * | Switch once to isc_boolean_t in preparation of nothreads removal | 2020-01-26 | 5 | -47/+34 | |
| | | | | | OK tedu, jca | ||||
| * | Remove now unused unix/file.c and unix/fsaccess.c | 2020-01-26 | 15 | -1419/+18 | |
| | | | | | OK jca, tedu | ||||
| * | We are not going to write keys to disk. | 2020-01-26 | 6 | -732/+11 | |
| | | | | | OK jca, tedu | ||||
| * | Remove unused logging to file. | 2020-01-26 | 2 | -355/+4 | |
| | | | | | OK jca, tedu | ||||
| * | unifdef sigchase. It is deprecated and never enabled on openbsd. | 2020-01-25 | 5 | -2381/+2 | |
| | | |||||
| * | isc_file_isdirwritable is not used (and besides, it uses access() which | 2020-01-25 | 2 | -13/+2 | |
| | | | | | hints all possible uses are TOCTOU) | ||||
| * | The config parser lets us know when the key file can't be found. | 2020-01-25 | 1 | -4/+1 | |
| | | | | | Not need to check beforehand and enter a race. | ||||
| * | isc/unix/syslog is unused | 2020-01-25 | 5 | -134/+5 | |
| | | |||||
| * | dns/master is unused | 2020-01-25 | 5 | -3604/+5 | |
| | | |||||
| * | we are not using rwlocks | 2020-01-25 | 6 | -201/+5 | |
| | | |||||
| * | another chroot tendril | 2020-01-25 | 1 | -4/+1 | |
| | | |||||
| * | Oops, one break too many removed; unbreak +tcp. | 2020-01-24 | 1 | -0/+1 | |
| | | |||||
| * | Since we are no longer using config.h we can remove a lot of feature | 2020-01-24 | 9 | -12318/+28 | |
| | | | | | | | | | | checks from configure. Work started by tedu, I tossed a bunch more. "go ahead" tedu This is not comprehensive but returns where diminishing in terms of saved build time. The next step would probably be to remove configure entirely. | ||||
| * | Remove overly complicated set_rcvbuf. Very likely not needed in dig et al. | 2020-01-23 | 1 | -68/+0 | |
| | | | | | OK deraadt | ||||
| * | Remove socket types that we are not going to use, like AF_UNIX sockets. | 2020-01-23 | 3 | -1321/+32 | |
| | | | | | OK deraadt | ||||
| * | We can always create IPv4 and IPv6 sockets. | 2020-01-23 | 3 | -496/+8 | |
| | | | | | | While here cleanup net.h. OK deraadt | ||||
| * | unused | 2020-01-23 | 4 | -297/+4 | |
| | | |||||
| * | config.h and platform.h are unused now | 2020-01-22 | 116 | -683/+254 | |
| | | |||||
| * | unifdef the last config.h bits | 2020-01-22 | 11 | -225/+5 | |
| | | | | | OK millert | ||||
| * | get rid if ISC_{UN,}LIKELY it's in the way and not useful. | 2020-01-22 | 10 | -66/+32 | |
| | | | | | OK millert | ||||
| * | Spell out PORT_NONBLOCK as O_NONBLOCK and ISC_SOCKADDR_LEN_T as | 2020-01-22 | 3 | -29/+14 | |
| | | | | | | socklen_t. OK millert | ||||
| * | eliminate many other possibilities in favor of just using select() here. | 2020-01-22 | 2 | -427/+0 | |
| | | | | | ok florian | ||||
