doc: document !2053

Co-authored-by: Jakob Bornecrantz <jakob@collabora.com>
This commit is contained in:
Simon Zeni 2023-11-23 13:49:26 -05:00 committed by Jakob Bornecrantz
parent 9070894455
commit 920949ecae
3 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,8 @@
---
- mr.2009
- mr.2053
---
all: Add ability to do more complex IPC communication by introducing VLA
functions. These lets us do the marshalling to some extent oursevles, useful
for sending a non-fixed amount of data. Currently only supports non-fixed sized
messages coming back from the server.
for sending a non-fixed amount of data. This support is bi-directional.

View file

@ -0,0 +1 @@
shared: Add ipc_command_size function to the protocol generation.

View file

@ -0,0 +1 @@
server: Read the exact command size in the client loop on Linux.