rename do_retransmission

...because it does not "do"

Change-Id: I5513e0ad15db4a0629f4e0348fc3e84d9972259a
This commit is contained in:
Eric Wild 2021-08-03 23:00:17 +02:00
parent 1e8d5fa44b
commit 958f5e74cc
1 changed files with 2 additions and 2 deletions

View File

@ -183,7 +183,7 @@ static struct msgb *mgcp_msgb_alloc(void)
}
/* Helper function for do_retransmission() and create_resp() */
static struct msgb *do_retransmission(const struct mgcp_endpoint *endp)
static struct msgb *create_retransmission_response(const struct mgcp_endpoint *endp)
{
struct msgb *msg = mgcp_msgb_alloc();
if (!msg)
@ -414,7 +414,7 @@ struct msgb *mgcp_handle_message(struct mgcp_config *cfg, struct msgb *msg)
/* Check if we have to retransmit a response from a previous transaction */
if (pdata.trans && rq.endp->last_trans && strcmp(rq.endp->last_trans, pdata.trans) == 0) {
rate_ctr_inc(rate_ctr_group_get_ctr(rate_ctrs, MGCP_GENERAL_RX_MSGS_RETRANSMITTED));
return do_retransmission(rq.endp);
return create_retransmission_response(rq.endp);
}
}