summaryrefslogtreecommitdiff
path: root/Libraries/LibIPC/Forward.h
AgeCommit message (Collapse)Author
2020-11-23LibIPC: Support sending file descriptors :^)Sergey Bugaev
It is now possible to use the special IPC::File type in message arguments. In C++, the type is nothing more than a wrapper over a file descriptor. But when serializing/deserializing IPC::File arguments, LibIPC will use the sendfd/recvfd kernel APIs instead of sending the integer inline. This makes it quite convenient to pass files over IPC, and will allow us to significantly tighten sandboxes in the future :^) Closes https://github.com/SerenityOS/serenity/issues/3643
2020-05-03LibIPC: Add a simple IPC::Dictionary type (String key -> String value)Andreas Kling
2020-03-29LibIPC: Add forwarding header for LibIPCAndreas Kling