putty174
putty174

Reputation: 315

Ice4j: Testing IcePseudoTcp - STUN server needed?

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?

Upvotes: 1

Views: 309

Answers (1)

msj121
msj121

Reputation: 2842

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.

Upvotes: 1

Related Questions