summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-04Improve client certificate selection for TLSv1.3Theo Buehler
This allows clients to use EC certificates. ok inoguchi, jsing
2020-06-04mention that TLS_method(3) also supports TLSv1.3;Ingo Schwarze
tb@ OKed this part of a larger diff from inoguchi@
2020-06-04syncTheo de Raadt
2020-06-04A } can go on the same line as a command.Nicholas Marriott
2020-06-04Collapse the x509v3 directory into x509.Joel Sing
This avoids the need to grep across directories to find functions and prepares for further rototilling and chainsawing. Discussed with tb@ (who also tested the release build)
2020-06-04Enable bwfm(4).Patrick Wildt
2020-06-04Shorten some long lines.Nicholas Marriott
2020-06-04Correct respawn-* - they don't always use the creation command.Nicholas Marriott
2020-06-04new manual page PKCS7_add_attribute(3);Ingo Schwarze
tweaks and OK tb@
2020-06-04Make the -no-clear command variants not clear the search marks either.Nicholas Marriott
2020-06-04Allow strings to span multiple lines - newlines and any leadingNicholas Marriott
whitespace are removed, as well as any following comments that couldn't be part of a format. This allows long formats or other strings to be annotated and indented.
2020-06-04Instead of using a custom parse function to process {}, treat it as aNicholas Marriott
set of statements and parse with yacc, then convert back to a string as the last step. This means the rules are consistent inside and outside {}, %if and friends work at the right time, and the final result isn't littered with unnecessary newlines.
2020-06-04Fix pfr_kentry_byaddr() to be used for a rule in an anchor. ItYASUOKA Masahiko
couldn't find an entry if its table is attached a table on the root. This fixes the problem "route-to <TABLE> least-states" doesn't work. The problem is found by IIJ. OK sashan
2020-06-04Sync new perldeltaAndrew Fresh
2020-06-04Sync to perl 5.30.3Andrew Fresh
All functional changes were committed already, this updates the version number, Module::Corelist, and documentation.
2020-06-03syncTheo de Raadt
2010-09-24Perl 5.12.2 from CPANTodd C. Miller
2020-06-03Simplify logic in add_route(), eliminating pointless code duplication andKenneth R Westerback
improving clarity. No intentional functional change.
2020-06-03Pass sockaddr instead of sockaddr_storage to sa_address.tobhe
ok patrick@
2020-06-03Make paste -p the default for ], GitHub issue 2248.Nicholas Marriott
2020-06-03Properly document PKCS7_final(3), which was already mentionedIngo Schwarze
in passing in some other manual pages.
2020-06-03somehow, when I used more bool, I forgot to check with WARNINGS=YesMarc Espie
no reason for those types to have different return types, all compilers are slightly unhappy with incompatible function pointers (again, obvious commit, no difference in generated code)
2020-06-03Init_Sigset() isn't a prototype without the void!Marc Espie
obvious warning fix
2020-06-03Add missing ieee80211_release_node() calls in cases where hardwareJonathan Matthew
decryption failed. The node here is always ic_bss, for which the reference count isn't actually used (it's always freed when the interface detaches), so missing these calls wasn't really a problem. ok stsp@
2020-06-03Import regenerated moduli file.Darren Tucker
2020-06-03let the random subsystem read the tsc for event "timestamps".David Gwynne
2020-06-03Enable the record layer limits test and mark two finished test cases asTheo Buehler
xfail for now. Arguably, the expected decode_error is more appropriate than the decrypt_error that we send at the moment.
2020-06-02syncTheo de Raadt
2020-06-02Move the code to set up a padding cell into grid.c.Nicholas Marriott
2020-06-02Allow UTF-8 characters of width 0 to be stored, it is useful to be ableNicholas Marriott
to put padding cells in as width 0.
2020-06-02Don't leak authmsg.tobhe
ok patrick@
2020-06-02disable debugging by default and only print unknown events whenJoshua Stein
debug is enabled
2020-06-02Missing ; in previous.Nicholas Marriott
2020-06-02Fire copy-pipe command even if there is no text, means it works if itNicholas Marriott
has side effects.
2020-06-02UTF-8 keys need to be big endian so the size bits are at the top.Nicholas Marriott
2020-06-02fix SEE ALSO;Jason McIntyre
2020-06-02add acpihid(4) for ACPI HID event and 5-button array devicesJoshua Stein
ok kettenis
2020-06-02update currency exchange rates;Jason McIntyre
2020-06-02remove useless redirectionsMarc Espie
okay tb@, florian@
2020-06-02less convoluted Makefile, removes useless redirectionsMarc Espie
okay tb@, florian@
2020-06-02Remove const modifier in return type of tls13_handshake_active_state()Theo Buehler
which make no sense as pointed out by gcc on sparc64. ok jsing
2020-06-02kill dead lineMarc Espie
okay millert@
2020-06-02use the right abstraction to abort jobs, also show debug info as thisMarc Espie
thing is tricky okay millert@
2020-06-02Fail rather than fatal on UTF-8 width 0.Nicholas Marriott
2020-06-02Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlNicholas Marriott
mode %output blocks.
2020-06-02Add support for hardware vlan tagging. Tag insertion here is actuallyJonathan Matthew
done by the driver, as it places the full L2 packet header inside the send queue entry, so it can insert the vlan tag there if required. ok dlg@
2020-06-02distracting whitespaceTheo Buehler
2020-06-02use correct node when enabling phyJonathan Gray
ok kettenis@
2020-06-02Add missing ieee80211_release_node() calls in cases where hardwareJonathan Matthew
decryption failed. The node here is always ic_bss, for which the reference count isn't actually used (it's always freed when the interface detaches), so missing these calls wasn't really a problem. ok stsp@
2020-06-02When the set of ports in an aggr changes, set the aggr capabilities toJonathan Matthew
the intersection of the capabilities of the ports, allowing use of vlan and checksum offloads if supported by all ports. Since this works the same way as updating hardmtu, do them both at the same time. ok dlg@