mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 16:49:20 +00:00
Linphone updated
This commit is contained in:
parent
adc966996b
commit
1799f1cb7e
1 changed files with 6 additions and 0 deletions
|
|
@ -77,6 +77,8 @@ class LinphoneProxyConfigImpl implements LinphoneProxyConfig {
|
|||
private native boolean publishEnabled(long ptr);
|
||||
private native void setContactParameters(long ptr, String params);
|
||||
|
||||
private native int lookupCCCFromIso(long nativePtr, String iso);
|
||||
|
||||
public void enableRegister(boolean value) {
|
||||
enableRegister(nativePtr,value);
|
||||
}
|
||||
|
|
@ -147,4 +149,8 @@ class LinphoneProxyConfigImpl implements LinphoneProxyConfig {
|
|||
public void setContactParameters(String params) {
|
||||
setContactParameters(nativePtr, params);
|
||||
}
|
||||
@Override
|
||||
public int lookupCCCFromIso(String iso) {
|
||||
return lookupCCCFromIso(nativePtr, iso);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue