Linphone updated
This commit is contained in:
parent
5e6587fe72
commit
dba31abc54
2 changed files with 7 additions and 1 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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 28cacd507485d88bb933d076ab968494f33f9074
|
||||
Subproject commit 0c0f6271ed787c463ec5198c3cf8fcf22bc8c7d8
|
Loading…
Reference in a new issue