mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
Remove ECHO for Candidates after a Session Establishment
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7442 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
30a681a351
commit
c3c44e142d
2 changed files with 9 additions and 4 deletions
|
@ -760,7 +760,7 @@ public abstract class TransportCandidate {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (IOException e) {
|
catch (IOException e) {
|
||||||
e.printStackTrace();
|
// Do Nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
this.removeListener(listener);
|
this.removeListener(listener);
|
||||||
|
@ -778,7 +778,7 @@ public abstract class TransportCandidate {
|
||||||
|
|
||||||
public class TestResults {
|
public class TestResults {
|
||||||
|
|
||||||
private boolean result;
|
private boolean result=false;
|
||||||
|
|
||||||
public boolean isReachable() {
|
public boolean isReachable() {
|
||||||
return result;
|
return result;
|
||||||
|
|
|
@ -747,6 +747,11 @@ public abstract class TransportNegotiator extends JingleNegotiator {
|
||||||
*/
|
*/
|
||||||
public void eventEnter() {
|
public void eventEnter() {
|
||||||
System.out.println("Transport stabilished");
|
System.out.println("Transport stabilished");
|
||||||
|
|
||||||
|
for (TransportCandidate transportCandidate : offeredCandidates)
|
||||||
|
if (transportCandidate.getCandidateEcho() != null)
|
||||||
|
transportCandidate.removeCandidateEcho();
|
||||||
|
|
||||||
triggerTransportEstablished(getAcceptedLocalCandidate(),
|
triggerTransportEstablished(getAcceptedLocalCandidate(),
|
||||||
getBestRemoteCandidate());
|
getBestRemoteCandidate());
|
||||||
super.eventEnter();
|
super.eventEnter();
|
||||||
|
|
Loading…
Reference in a new issue