summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC
AgeCommit message (Expand)Author
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-11-08LibIPC: Replace Result<T, E> use with ErrorOr<T>Andreas Kling
2021-11-08LibIPC: Add ClientConnection::shutdown_with_error()Andreas Kling
2021-11-08LibCore: Use ErrorOr<T> in Core::AnonymousBufferAndreas Kling
2021-11-03Revert "LibIPC: Use a zero-delay timer for message processing"Andreas Kling
2021-10-24LibIPC: Use a zero-delay timer for message processingAndreas Kling
2021-10-24LibIPC: Store local endpoint magic in a ConnectionBase memberAndreas Kling
2021-10-24LibIPC: Move waiting for synchronous responses to ConnectionBaseAndreas Kling
2021-10-24LibIPC: Move more of IPC::Connection to ConnectionBaseAndreas Kling
2021-10-24LibIPC: Move non-templated parts of IPC::Connection out of lineAndreas Kling
2021-10-24LibIPC: Add IPC::Stub to forwarding headerAndreas Kling
2021-09-16LibIPC: Use default instead of an empty constructor/destructorBrian Gianforcaro
2021-09-12LibIPC: Add support for transferring doubles over IPC messageskleines Filmröllchen
2021-09-06Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safeAli Mohammad Pur
2021-09-03LibIPC: Convert Encoder class to east-const styleAndreas Kling
2021-09-02Userland: Migrate to argument-less deferred_invokesin-ack
2021-08-11LibIPC: Pass only message size to decoderFederico Guerinoni
2021-08-01Libraries: Remove unused header includesBrian Gianforcaro
2021-07-21LibIPC: Fix losing messages when connection is closedTom
2021-07-18LibIPC: Close the socket and die when the peer is closedGunnar Beutner
2021-07-18LibIPC: Add Connection::is_open()Gunnar Beutner
2021-07-08LibIPC: Remove unnecessary `template<>`Daniel Bertalan
2021-07-08Everywhere: Forward declare structs as structsDaniel Bertalan
2021-07-04AK+LibIPC: Make all enums codableTimothy
2021-06-24Userland: Disambiguate dependent typesDaniel Bertalan
2021-05-24LibIPC: Fix unaligned u32 access in drain_messages_from_peer()Andreas Kling
2021-05-23LibIPC: Remove unnecessary IPC::ServerConnection::handshake()Andreas Kling
2021-05-19Everywhere: Add missing includes for <AK/OwnPtr.h>Gunnar Beutner
2021-05-14LibC: Do not include errno.h inside unistd.hJean-Baptiste Boric
2021-05-03Userland: Add try_* IPC handlersGunnar Beutner
2021-05-03Userland: Update IPC calls to use proxiesGunnar Beutner
2021-05-03Userland: Split IPC endpoints into proxies and stubsGunnar Beutner
2021-05-02LibIPC: Make sure FDs survive when passed into a MessageBufferGunnar Beutner
2021-05-02Userland: Make IPC handlers return void if they don't have any outputsGunnar Beutner
2021-05-02Userland: Get rid of the OwnPtr<...> boilerplate code for IPC handlersGunnar Beutner
2021-04-27LibIPC: Add missing errno.h includeJean-Baptiste Boric
2021-04-25IPCCompiler: Remove hardcoded endpoint magic, attempt deuxsin-ack
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21LibCore: Remove the barely-used Core::safe_syscall()Andreas Kling
2021-04-20LibIPC: Make Connection::send_sync return a NonnullOwnPtrIdan Horowitz
2021-04-16LibCore+LibIPC: Add IPC coder for Core::DateTimeTimothy Flynn
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-20LibIPC: Add Connection::send_sync_but_allow_failure()Andreas Kling
2021-02-14Kernel+Userland: Give sys$recvfd() an options argument for O_CLOEXECAndreas Kling
2021-02-13LibIPC: Oops, fix busted dbgln() format string (thanks, checker!)Andreas Kling
2021-02-13LibIPC: Make received file descriptors close-on-exec by defaultAndreas Kling
2021-02-01LibIPC: Stop sending client ID to clientsAndreas Kling
2021-01-31LibIPC: Stop exchanging client/server PIDs in greeting handshakeAndreas Kling
2021-01-16LibCore+LibIPC: Add Core::AnonymousBuffer, an IPC-friendly buffer classAndreas Kling
2021-01-16Everywhere: Replace a bundle of dbg with dbgln.asynts