summaryrefslogtreecommitdiff
path: root/lib9p/protogen/h.py
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-18 10:53:12 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-26 22:17:22 -0600
commite7f3db0679e5d37970a06f428208c3f5b51db5d2 (patch)
tree607b6716d89fb1615dda1bc27e582bed23043f68 /lib9p/protogen/h.py
parent865bb702f828784a0225b5eae9ed8803094140d5 (diff)
Diffstat (limited to 'lib9p/protogen/h.py')
-rw-r--r--lib9p/protogen/h.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib9p/protogen/h.py b/lib9p/protogen/h.py
index 7785ca1..3e743e9 100644
--- a/lib9p/protogen/h.py
+++ b/lib9p/protogen/h.py
@@ -166,6 +166,11 @@ def gen_h(versions: set[str], typs: list[idl.UserType]) -> str:
#include <stdint.h> /* for uint{{n}}_t types */
#include <libhw/generic/net.h> /* for struct iovec */
+
+struct {c9util.ident('_iovec_list')} {{
+\tstruct iovec *iov;
+\tint iovcnt;
+}};
"""
id2typ: dict[int, idl.Message] = {}
@@ -224,6 +229,7 @@ enum {c9util.ident('version')} {{
ret += """
/* payload types **************************************************************/
+
"""
def per_version_comment(
@@ -357,7 +363,13 @@ enum {c9util.ident('version')} {{
if member.val:
continue
ret += cutil.ifdef_push(2, c9util.ver_ifdef(member.in_versions))
- ret += f"\t{c9util.typename(member.typ, member):<{typewidth}} {'*' if member.cnt else ' '}{member.membname};\n"
+ ptr = bool(member.cnt)
+ if (
+ c9util.typename(member.typ, member)
+ == f"struct {c9util.ident('_iovec')}"
+ ): # SPECIAL (zerocopy)
+ ptr = False
+ ret += f"\t{c9util.typename(member.typ, member):<{typewidth}} {'*' if ptr else ' '}{member.membname};\n"
ret += cutil.ifdef_pop(1)
ret += "};\n"
del typ