ladybird/Base/usr/share/man/man2
Andreas Kling 26a31c7efb Kernel: Add "accept" pledge promise for accepting incoming connections
This patch adds a new "accept" promise that allows you to call accept()
on an already listening socket. This lets programs set up a socket for
for listening and then dropping "inet" and/or "unix" so that only
incoming (and existing) connections are allowed from that point on.
No new outgoing connections or listening server sockets can be created.

In addition to accept() it also allows getsockopt() with SOL_SOCKET
and SO_PEERCRED, which is used to find the PID/UID/GID of the socket
peer. This is used by our IPC library when creating shared buffers that
should only be accessible to a specific peer process.

This allows us to drop "unix" in WindowServer and LookupServer. :^)

It also makes the debugging/introspection RPC sockets in CEventLoop
based programs work again.
2020-01-17 11:19:06 +01:00
..
access.md Base: Write some initial man pages 2019-09-28 18:29:42 +02:00
chroot.md Base: Document new chroot abilities 2020-01-12 20:02:11 +01:00
create_shared_buffer.md Base: Add some "See also" links to the man pages 2019-10-03 08:23:54 +02:00
mkdir.md Base: Add some "See also" links to the man pages 2019-10-03 08:23:54 +02:00
module_load.md Base: Document EPERM error in module_load(2) and module_unload(2) 2020-01-02 12:35:19 +01:00
module_unload.md Base: Document EPERM error in module_load(2) and module_unload(2) 2020-01-02 12:35:19 +01:00
mount.md Base: Document mount(2) and mount(8) 2020-01-11 18:57:53 +01:00
pipe.md Base: Fix minor typos in man pages 2019-09-28 23:06:22 +02:00
pledge.md Kernel: Add "accept" pledge promise for accepting incoming connections 2020-01-17 11:19:06 +01:00
share_buffer_with.md Base: Add some "See also" links to the man pages 2019-10-03 08:23:54 +02:00
uname.md Docs: Add uname(1) and uname(2) man pages 2019-11-17 19:48:11 +01:00