From c99e88f38a63cf3ad762b748ed22d9d81456d3e4 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Thu, 17 Oct 2024 17:20:31 -0400 Subject: [PATCH] chan_sip.c: Fix __sip_reliable_xmit build error Fixes #954 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index bf03c5ff26..6d2c8eb2a6 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -1203,7 +1203,7 @@ static int get_address_family_filter(unsigned int transport); /*--- Transmitting responses and requests */ static int sipsock_read(int *id, int fd, short events, void *ignore); static int __sip_xmit(struct sip_pvt *p, struct ast_str *data); -static int __sip_reliable_xmit(struct sip_pvt *p, uint32_t seqno, int resp, struct ast_str *data, int fatal, int sipmethod); +static enum sip_result __sip_reliable_xmit(struct sip_pvt *p, uint32_t seqno, int resp, struct ast_str *data, int fatal, int sipmethod); static void add_cc_call_info_to_response(struct sip_pvt *p, struct sip_request *resp); static int __transmit_response(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable); static int retrans_pkt(const void *data); -- 2.47.2