From 82c456c0c5fa6299c3b130fb66f5b9f252bd7539 Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Mon, 6 Nov 2023 09:24:36 +0100 Subject: [PATCH] sip/transp: add fallback addr --- src/sip/transp.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/sip/transp.c b/src/sip/transp.c index eb7717b3e..c63940a8b 100644 --- a/src/sip/transp.c +++ b/src/sip/transp.c @@ -792,8 +792,18 @@ static int conn_send(struct sip_connqent **qentp, struct sip *sip, bool secure, if (err) goto out; - if (connh) + /* Fallback check for any address win32 */ + if (!sa_isset(&conn->laddr, SA_ALL)) { + err = sip_transp_laddr(sip, &conn->laddr, conn->tp, dst); + if (err) + goto out; + } + + if (connh) { err = connh(&conn->laddr, dst, mb, arg); + if (err) + goto out; + } (void)tcp_conn_settos(conn->tc, sip->tos); #ifdef USE_TLS