mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 20:18:09 +00:00
Some issues fixed + chat notification + account assistant started
This commit is contained in:
parent
d5a3e7b345
commit
93d8702c4a
1 changed files with 9 additions and 1 deletions
|
|
@ -710,10 +710,18 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
}
|
||||
|
||||
public void removeCallLog(LinphoneCallLog log) {
|
||||
removeCallLog(nativePtr, log.getNativePtr());
|
||||
removeCallLog(nativePtr, ((LinphoneCallLogImpl) log).getNativePtr());
|
||||
}
|
||||
|
||||
public void resetMissedCallsCount() {
|
||||
resetMissedCallsCount(nativePtr);
|
||||
}
|
||||
|
||||
private native void tunnelSetHttpProxy(long nativePtr, String proxy_host, int port,
|
||||
String username, String password);
|
||||
@Override
|
||||
public void tunnelSetHttpProxy(String proxy_host, int port,
|
||||
String username, String password) {
|
||||
tunnelSetHttpProxy(nativePtr, proxy_host, port, username, password);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue