Examples of StunCandidateHarvester


Examples of org.ice4j.ice.harvest.StunCandidateHarvester

      agent.setNominationStrategy(NominationStrategy.NOMINATE_HIGHEST_PRIO);
   
    //stun and turn
    if( sta.stunAddresses != null )
      for( TransportAddress ta : sta.stunAddresses )
        agent.addCandidateHarvester(new StunCandidateHarvester(ta) );
   
    //LongTermCredential ltr = new LongTermCredential("1234", "abcd" ); //generateNonce(5), generateNonce(15));
    if( sta.turnAddresses != null )
      for( TransportAddress ta : sta.turnAddresses )
        agent.addCandidateHarvester(new TurnCandidateHarvester(ta) );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.