diff options
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'; |