]> sjero.net Git - linphone/commitdiff
Some issues fixed + chat notification + account assistant started
authorSylvain Berfini <Sylvain.Berfini@Belledonne-Communications.com>
Thu, 21 Jun 2012 14:44:23 +0000 (16:44 +0200)
committerSylvain Berfini <Sylvain.Berfini@Belledonne-Communications.com>
Thu, 21 Jun 2012 14:44:23 +0000 (16:44 +0200)
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);
+       }
 }