1

Does anyone know the process of testing IcePseduoTcp? Is it self contained, or do you have to point it to a STUN server for it to work?

putty174
  • 305
  • 5
  • 19

1 Answers1

1

It looks like the code states:

        StunCandidateHarvester stunHarv = new StunCandidateHarvester(
            new TransportAddress("sip-communicator.net",
                                 3478, Transport.UDP));
        StunCandidateHarvester stun6Harv = new StunCandidateHarvester(
            new TransportAddress("ipv6.sip-communicator.net",
                                 3478, Transport.UDP));

So you don't need your own STUN server it points to one.

msj121
  • 2,812
  • 3
  • 28
  • 55
  • 1
    I am not sure sim-commnicator is reachable, so perhaps you might want to add your own stuncandidateharvester. You can try: "stun.iptel.org" with the same code I posted. – msj121 Apr 12 '15 at 18:46