Which transport protocol I need to use for the follow ice4j code?
Transport transport = ?;
TransportAddress ta = new TransportAddress( hostname, port, transport );
LongTermCredential credential = new LongTermCredential( username, password );
TurnCandidateHarvester turnServer =new TurnCandidateHarvester( ta, credential );
possible values are:
- Transport.UDP
- Transport.TCP
- Transport.TLS
- Transport.DLTS
or other, which transport protocol matched to the two turn protocols turn:
and truns: