summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2020-02-21Document the format of the tsig key file.Florian Obser
While here improve tsig wording. With & OK jmc
2020-02-21Read CLOCK_MONOTONIC when we need timestamps to compare and useFlorian Obser
time(3) for the wall clock. prodding & OK jung
2020-02-21Fix some typos and an incorrect word in docs. Patch from itoama at live.jpDarren Tucker
via github PR#172.
2020-02-20bugfix: indented paragraph macros need a space characterIngo Schwarze
before the width argument
2020-02-20We do not generate DNS records from text representations.Florian Obser
OK millert
2020-02-20Remove support for reading tsig keys from dnssec key pair.Florian Obser
This was accidentally broken some time ago. Arguably this was the least useful way of providing tsig keys to dig. ISC also removed generating tsig keys from dnssec-keygen in 9.13. To read the key from disk using the -k option it has to be provided as as a session key: key "keyname" { algorithm hmac-sha256; secret "[...]"; }; OK millert
2020-02-20Add selection_active format for when the selection is present but notNicholas Marriott
moving with the cursor, from Mark Kelly.
2020-02-20Update moduli generation script to new ssh-keygen generation and screeningDarren Tucker
command line flags.
2020-02-20Import regenerated moduli.Darren Tucker
2020-02-20Backout revision 1.190 partially. That part was an unintended change whichYASUOKA Masahiko
is work in progress.
2020-02-20bugfix: .Tg must be ignored completely in these output modesIngo Schwarze
2020-02-19simplify signal setup and remove block/unblock/is_running/reloadJoerg Jung
with input from florian ok millert florian
2020-02-19remove unreachable codeJoerg Jung
ok millert florian
2020-02-19Tag subcommand sectionskn
Allow semantic lookup by manually tagging sections (.Sh) for which no automatic tagging has been implemented; this thereby also eliminates false positives such that ":tx509<Enter>" now jumps to the X509 section. feedback remi inoguchi schwarze OK tb
2020-02-19A few fixes to make modifier keys and dragging work - need to remove theNicholas Marriott
modifiers before checking for the dragging marker key, and apply them before looking up the end key. Also fix key-to-string with modifiers for special keys.
2020-02-19Fix http (not https) auth combined with proxy auth.Jeremie Courreges-Anglas
First look for userinfo, and overwrite it to make sure it doesn't reappears again later. Then reset the path to fix the fragile mechanism that produces the full request URI for the proxied connection case. ok yazuoka@
2020-02-19Don't put the userinfo in request URI. This also makes accessing aYASUOKA Masahiko
https server with user/password through "http_proxy" environment variable work properly. ok jca
2020-02-18Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros.Florian Obser
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
2020-02-18Remove unused task, taskmgr, app, socket and socketmgr methods.Florian Obser
OK millert
2020-02-18Ensure that the key lifetime provided fits within the values allowed byDarren Tucker
the wire format (u32). Prevents integer wraparound of the timeout values. bz#3119, ok markus@ djm@
2020-02-18Detect and prevent simple configuration loops when using ProxyJump.Darren Tucker
bz#3057, ok djm@
2020-02-17isc_stdio_open() wrapper function is only called in lex'erJoerg Jung
so call fopen() directly and drop it ok florian
2020-02-17remove unused codeJoerg Jung
ok florian
2020-02-16document -F none; with jmc@Christian Weisgerber
2020-02-16Get rid of isc_stdtime_t and use time_t directly.Florian Obser
OK millert
2020-02-16cleanupFlorian Obser
OK millert
2020-02-16clock_gettime cannot fail if called correctly; unravel TIME_NOWFlorian Obser
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
2020-02-16Move isc_time_formathttptimestamp to the only place it is used.Florian Obser
OK millert
2020-02-16unravel isc_time_formattimestampFlorian Obser
OK millert
2020-02-16unravel isc_time_add and isc_time_subtractFlorian Obser
OK millert
2020-02-16unravel isc_time_compareFlorian Obser
OK millert
2020-02-16unravel isc_time_isepochFlorian Obser
OK millert
2020-02-16remove timespec settersFlorian Obser
OK millert
2020-02-16Reduce interval indirection by setting struct members directly andFlorian Obser
using macros from sys/time.h OK millert
2020-02-16The timer type we are using requires interval to be set, removeFlorian Obser
unused interval_zero. OK millert
2020-02-16Replace isc_time_t and interval_t with struct timespec.Florian Obser
Input & OK millert
2020-02-16Add -tls1_3 and -notls1_3 options to openssl(1) s_client.Joel Sing
Also stop using version pinned methods, instead setting the min and max protocol versions. Requested by inoguchi@ ok inoguchi@ tb@
2020-02-16Now we are only using one timer type (once) and expires is always NULLFlorian Obser
so remove those struct members. OK millert
2020-02-16We only use isc_timertype_once, get rid of all other types.Florian Obser
OK millert
2020-02-16remove unused fileJonathan Gray
2020-02-15remove unused functionFlorian Obser
2020-02-15timer methods are unusedFlorian Obser
2020-02-15mention that -T man does not support eqn(7) and tbl(7);Ingo Schwarze
triggered by a question from Stephen Gregoratto <dev at sgregoratto dot me>
2020-02-15Add -a to list-keys to also list keys without notes with -N, suggestedNicholas Marriott
by Shehu Dikko.
2020-02-15test pointers against NULL not 0Jonathan Gray
2020-02-15remove unused lockid var and FDLOCK_ID macroJonathan Gray
2020-02-15get path to resolv.conf from resolv.hFlorian Obser
2020-02-15unifdef VALREGEX_REPORT_REASON, it doesn't provide much clarity.Florian Obser
2020-02-15Get rid of "discards (const) qualifiers" warning in a less convoluted way.Florian Obser
OK schwarze who points out that sufficiently excessive compiler warning settings will still warn for a straight forward (void *) cast.
2020-02-14Fix top/bottom pane calculation with pane border status enabled,Nicholas Marriott
reported by Stanislav Spassov.