add integration test

This commit is contained in:
Quentin McGaw
2026-05-27 15:17:25 +00:00
parent 0a4ac7cc0e
commit eb432e0e0e
3 changed files with 164 additions and 2 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ func (r *udpRouter) clientAddrPortForAssociation(associationID uint64) (
func (r *udpRouter) runAssociationHandler(ctx context.Context, association udpAssociation) {
config := &net.ListenConfig{}
socket, err := config.ListenPacket(ctx, "udp", "127.0.0.1:0")
socket, err := config.ListenPacket(ctx, "udp", ":0")
if err != nil {
r.logger.Warnf("creating per-association UDP socket: %s", err)
return