diff --git a/LinphoneCoreImpl.java b/LinphoneCoreImpl.java index 139e1a30f..b2a26a976 100644 --- a/LinphoneCoreImpl.java +++ b/LinphoneCoreImpl.java @@ -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); + } }