Skip to content

Commit

Permalink
Add back GenIGDev
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo committed Jan 24, 2025
1 parent 751eafe commit 1a4763f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions p2p/net/nat/internal/nat/nat.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,15 @@ func discoverNATs(ctx context.Context) ([]NAT, []error) {
}
}()

pendingJobs++
go func() {
nats, errs := discoverUPNP_GenIGDev(ctx)
select {
case resCh <- natsAndErrs{nats, errs}:
case <-ctx.Done():
}
}()

pendingJobs++
go func() {
nat, err := discoverNATPMP(ctx)
Expand Down

0 comments on commit 1a4763f

Please sign in to comment.