mirror of
https://github.com/curl/curl.git
synced 2026-08-26 08:33:31 +03:00
cfilter: send uint8_t bytes
Change the send parameter from `const void *` to `const uint8_t *` and adapt calling code. Several had already unsigned chars and were casting. Closes #19729
This commit is contained in:
parent
1e048e932a
commit
56e88e7c14
18 changed files with 53 additions and 54 deletions
|
|
@ -1428,7 +1428,7 @@ static void win_update_sndbuf_size(struct cf_socket_ctx *ctx)
|
|||
#endif /* USE_WINSOCK */
|
||||
|
||||
static CURLcode cf_socket_send(struct Curl_cfilter *cf, struct Curl_easy *data,
|
||||
const void *buf, size_t len, bool eos,
|
||||
const uint8_t *buf, size_t len, bool eos,
|
||||
size_t *pnwritten)
|
||||
{
|
||||
struct cf_socket_ctx *ctx = cf->ctx;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue