constify arg in addr_is_any()

Change-Id: Ie8cb750d2e265bae48bbfa8ea1d88f3e316879ed
This commit is contained in:
Pau Espin 2021-07-06 20:04:23 +02:00
parent 7d86d4c523
commit 33347a4f5d
1 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,8 @@ static void rtpconn_rate_ctr_inc(struct mgcp_conn_rtp *conn_rtp, struct mgcp_end
static int rx_rtp(struct msgb *msg);
static bool addr_is_any(struct osmo_sockaddr *osa) {
static bool addr_is_any(const struct osmo_sockaddr *osa)
{
if (osa->u.sa.sa_family == AF_INET6) {
struct in6_addr ip6_any = IN6ADDR_ANY_INIT;
return memcmp(&osa->u.sin6.sin6_addr,