Reject incoming and outgoing calls to incall people.

This commit is contained in:
Guillaume Beraudo 2011-10-26 13:14:39 +02:00
parent ebaa5f460d
commit 5d05c29646

View file

@ -588,4 +588,8 @@ class LinphoneCoreImpl implements LinphoneCore {
public int getMaxCalls() {
return getMaxCalls(nativePtr);
}
@Override
public boolean isMyself(String uri) {
return uri.equals(getDefaultProxyConfig().getIdentity());
}
}