aboutsummaryrefslogtreecommitdiffstats
path: root/sys/freebsd/socket_unix.txt
Commit message (Collapse)AuthorAgeFilesLines
* sys/freebsd: fix cmsghdr_un_cred on FreeBSDAndrew Turner2021-05-171-1/+4
| | | | | * Use the FreeBSD SCM_CREDS value rather than the Linux SCM_CREDENTIALS. * Update based on the FreeBSD struct cmsgcred
* sys/freebsd: remove Linux headersAndrew Turner2021-05-171-2/+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-2/+2
| | | | | | | | | | | | 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 sockaddr structuresMichael Tuexen2019-06-231-2/+4
| | | | FreeBSD uses in sockaddr_{in,in6,un} structures a length field.
* 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/+80
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.