mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 15:04:42 +00:00
CLEANUP: htx: Remove the unsued function htx_add_blk_type_size()
This commit is contained in:
parent
3b21972061
commit
5a916f7326
@ -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);
|
||||
|
16
src/htx.c
16
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 <type> in <htx>, of size <blksz>. 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 <hdrs> into the HTX message <htx>, followed by
|
||||
* the EOH. On sucess, it returns the last block inserted (the EOH), otherwise
|
||||
* NULL is returned. */
|
||||
|
Loading…
Reference in New Issue
Block a user