diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-28 07:54:46 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-28 07:54:46 -0600 |
commit | 9d964629694d821b863a0cd6a6c416fe671d5944 (patch) | |
tree | 820130eaabd9e2bdecd3c50ac4ddfd9943db296a /lib9p/types.c | |
parent | 4b51567ec3d76774555c0935531e75ac94336b40 (diff) |
tidy
Diffstat (limited to 'lib9p/types.c')
-rw-r--r-- | lib9p/types.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib9p/types.c b/lib9p/types.c index 071e3c8..f4718b6 100644 --- a/lib9p/types.c +++ b/lib9p/types.c @@ -805,6 +805,12 @@ struct _vtable_version _lib9p_vtables[LIB9P_VER_NUM] = { .unmarshal = (_unmarshal_fn_t)unmarshal_Rversion, .marshal = (_marshal_fn_t)marshal_Rversion, }, + [LIB9P_TYP_Rerror] = { + .unmarshal_basesize = sizeof(struct lib9p_msg_Rerror), + .unmarshal_extrasize = checksize_Rerror, + .unmarshal = (_unmarshal_fn_t)unmarshal_Rerror, + .marshal = (_marshal_fn_t)marshal_Rerror, + }, }}, [LIB9P_VER_9P2000] = { .msgs = { [LIB9P_TYP_Tversion] = { |