Hi again, and thanks again.
Supposing I solve the problem of the STUN server, then an external STUN server is not needed.
I need in any case in Android side to send the voip packets to an Ip address and port fixed by me (or better by my app).
I try to explain why, it is a little bit long, I hope to no be boring.
My application does Indivdual Call and Group calls (PTT - one talk and other N listen).
In Group Call I have a "Bounce server": it receives every voip packet from the transmitter and send the same packet to the N receivers.
The the mechanism (already implemented and working with other voip libraries) is:
- the transmitter sends voip packets to the ip address and port xxx of Bounce Server
- the Bounce Server receives the voip packet on port xxx
- The Bounce Server send the voip packet to ipadrress and port yyy_1 of receiver 1
- The Bounce Server send the voip packet to ipadrress and port yyy_2 of receiver 2
.....
- The Bounce Server send the voip packet to ipadrress and port yyy_N of receiver N
- The user 1 receive the voip packet on port yyy_1
- The user 2 receive the voip packet on port yyy_2
.....
- The user N receive the voip packet on port yyy_N
That's why I should have the possibility to fix ipaddress and port of receiver...
Do you have any suggestion on that?
Do you know some freelancer that could help me?