]> sjero.net Git - linphone/blobdiff - LinphoneCoreImpl.java
Some issues fixed + chat notification + account assistant started
[linphone] / LinphoneCoreImpl.java
index 75e885253981a45f6eaf23504a29b638fb3822ea..f732782d98f5b3abc995b31a387b04a7df97cf63 100644 (file)
@@ -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);
+       }
 }