From 920949ecae3ef89fd374e0b2dd6ac3f80f75bb4b Mon Sep 17 00:00:00 2001 From: Simon Zeni Date: Thu, 23 Nov 2023 13:49:26 -0500 Subject: [PATCH] doc: document !2053 Co-authored-by: Jakob Bornecrantz --- doc/changes/ipc/mr.2009.1.md | 8 ++++++-- doc/changes/ipc/mr.2053.1.md | 1 + doc/changes/ipc/mr.2053.2.md | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 doc/changes/ipc/mr.2053.1.md create mode 100644 doc/changes/ipc/mr.2053.2.md diff --git a/doc/changes/ipc/mr.2009.1.md b/doc/changes/ipc/mr.2009.1.md index 795320a44..9d7925571 100644 --- a/doc/changes/ipc/mr.2009.1.md +++ b/doc/changes/ipc/mr.2009.1.md @@ -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. diff --git a/doc/changes/ipc/mr.2053.1.md b/doc/changes/ipc/mr.2053.1.md new file mode 100644 index 000000000..cd07b9f38 --- /dev/null +++ b/doc/changes/ipc/mr.2053.1.md @@ -0,0 +1 @@ +shared: Add ipc_command_size function to the protocol generation. diff --git a/doc/changes/ipc/mr.2053.2.md b/doc/changes/ipc/mr.2053.2.md new file mode 100644 index 000000000..8c225ad6b --- /dev/null +++ b/doc/changes/ipc/mr.2053.2.md @@ -0,0 +1 @@ +server: Read the exact command size in the client loop on Linux.