$OpenBSD: patch-src_transports_udp_listeningpoint_c,v 1.1.1.1 2021/07/10 12:03:20 landry Exp $

we dont support AI_V4MAPPED so hardcode IPv4 for now

Index: src/transports/udp_listeningpoint.c
--- src/transports/udp_listeningpoint.c.orig
+++ src/transports/udp_listeningpoint.c
@@ -77,7 +77,7 @@ static belle_sip_socket_t create_udp_socket(const char
 
 
 	snprintf(portnum,sizeof(portnum),"%i",*port);
-	hints.ai_family=AF_UNSPEC;
+	hints.ai_family=AF_INET;
 	hints.ai_socktype=SOCK_DGRAM;
 	hints.ai_protocol=IPPROTO_UDP;
 	hints.ai_flags=AI_NUMERICSERV;
