Ability to limit number of calls / hide transfers.

This commit is contained in:
Guillaume Beraudo 2011-10-18 15:44:35 +02:00
parent 02851b26f7
commit ebaa5f460d

View file

@ -583,4 +583,9 @@ class LinphoneCoreImpl implements LinphoneCore {
public void setMediaEncryptionMandatory(boolean yesno) {
setMediaEncryptionMandatory(nativePtr, yesno);
}
private native int getMaxCalls(long nativePtr);
public int getMaxCalls() {
return getMaxCalls(nativePtr);
}
}