From: Christopher Faulet Date: Thu, 20 Jun 2019 13:22:51 +0000 (+0200) Subject: CLEANUP: htx: Remove the unsued function htx_add_blk_type_size() X-Git-Tag: v2.1-dev2~381 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5a916f73266953031252bbeb33cbe01995d3e1fd;p=thirdparty%2Fhaproxy.git CLEANUP: htx: Remove the unsued function htx_add_blk_type_size() --- diff --git a/include/common/htx.h b/include/common/htx.h index 27f0e5e64a..ba6604b27b 100644 --- a/include/common/htx.h +++ b/include/common/htx.h @@ -243,7 +243,6 @@ struct htx_blk *htx_replace_header(struct htx *htx, struct htx_blk *blk, struct htx_blk *htx_add_header(struct htx *htx, const struct ist name, const struct ist value); struct htx_blk *htx_add_trailer(struct htx *htx, const struct ist name, const struct ist value); -struct htx_blk *htx_add_blk_type_size(struct htx *htx, enum htx_blk_type type, uint32_t blksz); struct htx_blk *htx_add_all_headers(struct htx *htx, const struct http_hdr *hdrs); struct htx_blk *htx_add_all_trailers(struct htx *htx, const struct http_hdr *hdrs); struct htx_blk *htx_add_endof(struct htx *htx, enum htx_blk_type type); diff --git a/src/htx.c b/src/htx.c index c29a66d784..bdd10bad87 100644 --- a/src/htx.c +++ b/src/htx.c @@ -874,22 +874,6 @@ struct htx_blk *htx_add_trailer(struct htx *htx, const struct ist name, return blk; } -/* Adds an HTX block of type in , of size . It returns the - * new block on success. Otherwise, it returns NULL. The caller is responsible - * for filling the block itself. - */ -struct htx_blk *htx_add_blk_type_size(struct htx *htx, enum htx_blk_type type, uint32_t blksz) -{ - struct htx_blk *blk; - - blk = htx_add_blk(htx, type, blksz); - if (!blk) - return NULL; - - blk->info += blksz; - return blk; -} - /* Add all headers from the list into the HTX message , followed by * the EOH. On sucess, it returns the last block inserted (the EOH), otherwise * NULL is returned. */