summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-21Include the OFP header of the message that caused the error on errorRafael Zalamena
messages. ok reyk@
2016-11-21bridge(4) does not distinguish between routing/forwarding ports, soReyk Floeter
make "addlocal" an alias to "add" on bridge. addlocal is handled differently on switch(4). OK yasuoka@
2016-11-21Some MBIM devices need a FCC Authentication before they're willing toGerhard Roth
turn on the radio. This is done by encapsulating QMI requests inside a MBIM message. Based on prio work by sthen@, tested by Bryan Vyhmeister. ok sthen@
2016-11-21jmc@ pointed out i forgot to fix the missing SRPL_LEAVE in the synopsis.David Gwynne
sprinkle some .Ft on the things that act like functions while here.
2016-11-21tweak the pages based on feedback from jmc@David Gwynne
they could do with some examples too.
2016-11-21let pool page allocators advertise what sizes they can provide.David Gwynne
to keep things concise i let the multi page allocators provide multiple sizes of pages, but this feature was implicit inside pool_init and only usable if the caller of pool_init did not specify a page allocator. callers of pool_init can now suplly a page allocator that provides multiple page sizes. pool_init will try to fit 8 items onto a page still, but will scale its page size down until it fits into what the allocator provides. supported page sizes are specified as a bit field in the pa_pagesz member of a pool_allocator. setting the low bit in that word indicates that the pages can be aligned to their size.
2016-11-20Remove some old code that isn't needed anymore.Mike Larkin
2016-11-20grammar fix;Jason McIntyre
2016-11-20Add the correct Copyright notices and licenses.Ingo Schwarze
This is the first manual page i encounter that contains both parts of text derived from the old SSLeay documentation, hence covered by Tim Hudson's Copyright and available under Eric Young's original SSLeay license, and parts changed or added later, hence covered by the OpenSSL Copyright and license. Both licenses have to be included.
2016-11-20Add Copyright and license.Ingo Schwarze
Merge some typo fixes, a paragraph documenting another flag, and some additional explanations and EXAMPLES from OpenSSL.
2016-11-20Add Copyright and license.Ingo Schwarze
Drop the empty RETURN VALUES section.
2016-11-20Add Copyright and license.Ingo Schwarze
Merge documentatin of BUF_MEM_grow_clean(3) and BUF_reverse(3) from OpenSSL. Mention that BUF_MEM_free(3) accepts NULL.
2016-11-20Copyright and licenseIngo Schwarze
2016-11-20Add Copyright and license.Ingo Schwarze
Mention that shifting by negative numbers of bits is not allowed.
2016-11-20Add Copyright and license.Ingo Schwarze
Merge one additional sentence stating a restriction on arguments from OpenSSL.
2016-11-20Copyright and licenseIngo Schwarze
2016-11-20Add Copyright and license.Ingo Schwarze
Mention that some *_free(3) functions accept NULL. Delete useless statements about void functions not retuning a value.
2016-11-20Copyright and licenseIngo Schwarze
2016-11-20Add Copyright and license.Ingo Schwarze
In the SYNOPSIS, show prototypes rather than #define directives. Clarify that BN_generate_prime_ex(3) takes the minimum length, not the exact length.
2016-11-20Add Copyright and license.Ingo Schwarze
Merge documentation of BN_with_flags(3) from OpenSSL.
2016-11-20Copyright and licenseIngo Schwarze
2016-11-20Add Copyright and license.Ingo Schwarze
More details about BN_hex2bn(3) lifted from the OpenSSL manual, but worded less clumsily.
2016-11-20Add Copyright and license.Ingo Schwarze
Delete duplicate specification of the error return value of BN_mod_word(3). Fix a markup error in the remaining copy of the same return value.
2016-11-20Add Copyright and license.Ingo Schwarze
Merge a sentence from OpenSSL saying that BN_sub(3) can do in-place manipulation.
2016-11-20Add Copyright and license.Ingo Schwarze
Delete the useless statement that a void function returns no value.
2016-11-20Add Copyright and license.Ingo Schwarze
Mention that BN_CTX_free(3) accepts NULL. Delete the useless statement that void functions return no value.
2016-11-20Drop pointless type casts.Visa Hankala
2016-11-20Extend the DLT_OPENFLOW header to include the switch datapath id.Reyk Floeter
OK rzalamena@
2016-11-20Move LOCKED macros to teir own manual.Martin Pieuchot
This will allow us to better document them and add examples. Disccussed with dlg@
2016-11-20SRPL_FIRST() and SRPL_FOLLOW().Martin Pieuchot
2016-11-20Make rtable_iterate(9) mpsafe by using the new SRPL_NEXT(9).Martin Pieuchot
ok dlg@, jmatthew@
2016-11-20Rename SRPL_ENTER() to SRPL_FIRST() and SRPL_NEXT() to SRPL_FOLLOW().Martin Pieuchot
This allows us to introduce SRPL_NEXT() that can be used to start iterating on an arbitrary member of an srp list, hence without calling SRPL_ENTER(). ok dlg@, jmatthew@
2016-11-20Fix up some permissions in RELEASEDIR and /var/sysmerge.Theo Buehler
help, testing & ok rpe
2016-11-20add dedicated functions to set fd and callback on a struct io.Eric Faurot
simplify io_init() prototype. ok sunil@ gilles@
2016-11-20Document a limitation on interrupt routing.Visa Hankala
2016-11-20Add Copyright and license.Ingo Schwarze
Mention that BN_BLINDING_free() accepts NULL. Adjust AUTHORS section to OpenBSD conventions.
2016-11-20Add Copyright and license.Ingo Schwarze
In the SYNOPSIS, show function prototypes, not #define directives.
2016-11-20Add Copyright and license.Ingo Schwarze
In the SYNOPSIS, provide prototypes rather than #define directives. Name arguments consistently. Remove lies about functions being macros.
2016-11-19Add that RELEASEDIR must be writable by the build user.Theo Buehler
ok tj
2016-11-19While setting up the basic rate bitmask for iwm's firmware, if the AP doesStefan Sperling
not specify basic rates for either the CCK or OFDM set, add just the most basic rate to that set (1 Mbit/s in case of CCK, 6 Mbit/s in case of OFDM). This behaviour matches what code comments seem to imply. The previous code would add all possible basic rates in such cases. So if all basic rates were CCK only, the code would add all possible OFDM basic rates on top. Then the firmware would send some frames at too high rates, e.g. RTS frames would be sent at 24Mbit/s which is a bit risky on noisy channels. ok tb@
2016-11-19Make tcpdump indicate basic rates listed in beacons with an asterisk.Stefan Sperling
ok tb@
2016-11-19Set iwm's RTS retry limit to a more reasonable value. Prevents small framesStefan Sperling
from getting stuck in the firmware's Tx queue for a long time behind other frames large enough to trigger RTS but not making it out (e.g. due to bad channel conditions). ok tb@
2016-11-19syncTheo Buehler
2016-11-19Update for builds with a dedicated user: BUILDUSER now defaults to buildTheo Buehler
and document WOBJGROUP and WOBJUMASK. Also: more consistent quotes. ok jmc
2016-11-19Update for builds with a dedicated build user. Eliminate some moreTheo Buehler
customization variables and refer to mk.conf(5) instead. input & ok tj
2016-11-19Enable builds with a dedicated user that cannot elevate privileges or writeTheo Buehler
to /usr/src or /usr/xenocara. Change /usr/{,x}obj to owner build:wobj with mode 770 and install the systemwide makefiles before starting a build. The root of the noperm fs containing DESTDIR should also be owned by build:wobj. Developers will need to add their users to group wobj to be able to write to /usr/{,x}obj/. "push forward" deraadt; testing, input & ok rpe
2016-11-19Print metric and type for "redistribute" in ospfd -v.Stuart Henderson
From Remi Locherer, ok claudio
2016-11-19hyrogen bomb related fixes, prompted by Carson Chittom; dates moved toOtto Moerbeek
UTC. ok tb@ jmc@
2016-11-18Unbreak the tree: OFP_GROUP_ANY was renamed to OFP_GROUP_ID_ANY.Theo Buehler
fix found joint with rpe, ok reyk
2016-11-18fix double word;Jason McIntyre