add a few TODOs wrt tie breaks

This commit is contained in:
Daniel Gultsch 2023-09-14 14:39:32 +02:00
parent fdd7f2926f
commit b4c3334d7e
No known key found for this signature in database
GPG key ID: F43D18AD2A0982C2

View file

@ -367,12 +367,14 @@ public class JingleConnectionManager extends AbstractConnectionManager {
this.connections.put(id, rtpConnection); this.connections.put(id, rtpConnection);
rtpConnection.setProposedMedia(ImmutableSet.copyOf(media)); rtpConnection.setProposedMedia(ImmutableSet.copyOf(media));
rtpConnection.deliveryMessage(from, message, serverMsgId, timestamp); rtpConnection.deliveryMessage(from, message, serverMsgId, timestamp);
// TODO actually do the automatic accept?!
} else { } else {
Log.d( Log.d(
Config.LOGTAG, Config.LOGTAG,
account.getJid().asBareJid() account.getJid().asBareJid()
+ ": our session won tie break. waiting for other party to accept. winningSession=" + ": our session won tie break. waiting for other party to accept. winningSession="
+ ourSessionId); + ourSessionId);
// TODO reject their session with <tie-break/>?
} }
return; return;
} }