diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-04 17:28:54 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-04 17:28:54 -0600 |
commit | 2fe787ba4db420f5b08573d77e35cfaa0d7a0793 (patch) | |
tree | b9c1264b56d713a6df9b029606f87d824f3a3d20 /lib9p/9p.c | |
parent | b683e779ef83b88f6ffc503a1d1a4f3ec25a5cfa (diff) |
wip srv
Diffstat (limited to 'lib9p/9p.c')
-rw-r--r-- | lib9p/9p.c | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -13,21 +13,6 @@ #include "internal.h" -enum lib9p_version lib9p_ctx_version(struct lib9p_ctx *ctx) { - assert(ctx); - return ctx->version; -} - -uint32_t lib9p_ctx_max_msg_size(struct lib9p_ctx *ctx) { - assert(ctx); - return ctx->max_msg_size; -} - -bool lib9p_ctx_has_error(struct lib9p_ctx *ctx) { - assert(ctx); - return ctx->err_num || ctx->err_msg[0]; -} - int lib9p_error(struct lib9p_ctx *ctx, uint32_t linux_errno, char const *msg) { strncpy(ctx->err_msg, msg, sizeof(ctx->err_msg)); ctx->err_msg[sizeof(ctx->err_msg)-1] = '\0'; |