From be1a7b95630e6d062011388d074a7dbba5ef1f1a Mon Sep 17 00:00:00 2001 From: tiptorrent development team Date: Thu, 23 Dec 2021 18:20:42 +0100 Subject: rename HTTP GET handlers --- src/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index e71d5ff..b3739ec 100644 --- a/src/main.c +++ b/src/main.c @@ -122,7 +122,7 @@ static void tip_client_progress(struct tip_client *cli, bool now) static int tip_client_connect(const char *addr); -static int tip_client_state_recv_hdr(struct tip_client *cli) +static int tip_client_get_hdr(struct tip_client *cli) { char *ptr, *trailer, *payload; char redirect_addr[32]; @@ -218,7 +218,7 @@ static int tip_client_state_recv_hdr(struct tip_client *cli) return 1; } -static int tip_client_state_recv_payload(struct tip_client *cli) +static int tip_client_get_payload(struct tip_client *cli) { int ret; @@ -298,7 +298,7 @@ static void tip_client_read_cb(struct ev_loop *loop, struct ev_io *io, int event switch (cli->state) { case TIP_CLIENT_GET_HEADER: - ret = tip_client_state_recv_hdr(cli); + ret = tip_client_get_hdr(cli); if (ret < 0) goto error; if (!ret) @@ -307,7 +307,7 @@ static void tip_client_read_cb(struct ev_loop *loop, struct ev_io *io, int event cli->state = TIP_CLIENT_GET_PAYLOAD; /* Fall through. */ case TIP_CLIENT_GET_PAYLOAD: - ret = tip_client_state_recv_payload(cli); + ret = tip_client_get_payload(cli); if (ret < 0) goto error; if (ret == 0) -- cgit v1.2.3-18-g5258