Linphone submodule updated

This commit is contained in:
Sylvain Berfini 2012-06-28 13:36:54 +02:00
parent 282e3a726b
commit f4a86fa9de
3 changed files with 21 additions and 11 deletions

View file

@ -1438,4 +1438,10 @@ public final class LinphoneManager implements LinphoneCoreListener {
super(throwable); super(throwable);
} }
} }
@Override
public void notifyReceived(LinphoneCore lc, LinphoneCall call,
LinphoneAddress from, byte[] event) {
}
} }

View file

@ -20,7 +20,6 @@ package org.linphone.core;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.util.Vector;
class LinphoneCoreImpl implements LinphoneCore { class LinphoneCoreImpl implements LinphoneCore {
@ -710,19 +709,24 @@ class LinphoneCoreImpl implements LinphoneCore {
String username, String password) { String username, String password) {
tunnelSetHttpProxyNative(nativePtr,proxy_host, port, username, password); tunnelSetHttpProxyNative(nativePtr,proxy_host, port, username, password);
} }
@Override
private native void removeCallLog(long nativePtr, LinphoneCallLog log);
public void removeCallLog(LinphoneCallLog log) { public void removeCallLog(LinphoneCallLog log) {
// TODO Auto-generated method stub removeCallLog(nativePtr, log);
} }
@Override
private native int getMissedCallsCount(long nativePtr);
public int getMissedCallsCount() { public int getMissedCallsCount() {
// TODO Auto-generated method stub return getMissedCallsCount(nativePtr);
return 0;
} }
@Override
public void resetMissedCallsCount() {
// TODO Auto-generated method stub
private native void resetMissedCallsCount(long nativePtr);
public void resetMissedCallsCount() {
resetMissedCallsCount(nativePtr);
}
private native void refreshRegisters(long nativePtr);
public void refreshRegisters() {
refreshRegisters(nativePtr);
} }
} }

@ -1 +1 @@
Subproject commit fc2940d526e93ea733fcebf4baa28631aa215564 Subproject commit 7d105b10d934e194796bdaaabdfd9f185261d309