aboutsummaryrefslogtreecommitdiffstats
path: root/sys/freebsd/socket.txt
Commit message (Collapse)AuthorAgeFilesLines
* sys/freebsd: add SO_SPLICE and regenerateMark Johnston2024-10-281-0/+7
|
* sys/freebsd: add SO_RERRORMark Johnston2021-07-281-1/+1
|
* sys/freebsd: remove Linux headersAndrew Turner2021-05-171-1/+0
| | | | | | These are only needed when building Linux ABI support and are not needed by native FreeBSD system calls. As these files describe the native FreeBSD ABI remove them.
* pkg/compiler: refactor attribute handlingDmitry Vyukov2020-04-191-1/+1
| | | | | | | | | | | | Introduce common infrastructure for describing and parsing attribute instead of custom per-attribute code scattered across several locations. Change align attribute syntax from the weird align_N to align[N]. This also allows to use literal constants as N. Introduce notion of builtin constants. Currently we have only PTR_SIZE, which is needed to replace align_ptr with align[PTR_SIZE].
* sys/freebsd: add bindat(2)Mark Johnston2020-03-271-0/+1
|
* sys/freebsd: add connectat(2)Mark Johnston2020-03-271-0/+1
|
* sys/freebsd: fix socketpair usageMichael Tuexen2018-12-091-1/+6
|
* sys/freebsd: use a better description of msg_flags fieldsMichael Tuexen2018-12-081-2/+2
| | | | | | | As suggested by Dmitry us a better description of the msg_flags field, which is only used to provide information from the kernel to the application for recvmsg() calls. This means that the value provided is basically ignored.
* sys/freebsd: Improve socket related tests for FreeBSD.Michael Tuexen2018-12-081-13/+17
|
* FreeBSD: Fix make extractMichael Tüxen2018-11-301-0/+1
| | | | | | | | | | * FreeBSD: Fix make extract. A header was missing... * FreeBSD: Fix make extract Changes in generated files.
* pkg/compiler: check for unused declarationsDmitry Vyukov2018-06-301-27/+0
| | | | | Error on unused structs/unions/resources/flags. Finds tons of bugs.
* sys/linux: add type alias for socket portDmitry Vyukov2018-01-081-0/+1
| | | | | | type sock_port proc[20000, 4, int16be] That was repeated a few times.
* pkg/compiler: add check that len does not refer to array with varlen elementsDmitry Vyukov2017-11-281-1/+1
| | | | | This [almost] always means a bug in descriptions. Fix all bugs identified by the check.
* sys/freebsd: more syscall descriptionsDmitry Vyukov2017-10-171-0/+119
This is mostly copied form linux. We probably need better support for sharing descriptions between multiple OSes. But there are lots of differences, so this is not trivial.