mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
add tunnelSetHttpProxy()
This commit is contained in:
parent
99ace7d2fd
commit
7db25e2e31
2 changed files with 31 additions and 0 deletions
|
|
@ -45,5 +45,15 @@ class LinphoneCallLogImpl implements LinphoneCallLog {
|
|||
public CallStatus getStatus() {
|
||||
throw new RuntimeException("not implemented yet");
|
||||
}
|
||||
@Override
|
||||
public String getStartDate() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
@Override
|
||||
public int getCallDuration() {
|
||||
// TODO Auto-generated method stub
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -704,4 +704,25 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
{
|
||||
setCpuCountNative(count);
|
||||
}
|
||||
private native void tunnelSetHttpProxyNative(long nativePtr, String proxy_host, int port, String username, String password);
|
||||
@Override
|
||||
public void tunnelSetHttpProxy(String proxy_host, int port,
|
||||
String username, String password) {
|
||||
tunnelSetHttpProxyNative(nativePtr,proxy_host, port, username, password);
|
||||
}
|
||||
@Override
|
||||
public void removeCallLog(LinphoneCallLog log) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
@Override
|
||||
public int getMissedCallsCount() {
|
||||
// TODO Auto-generated method stub
|
||||
return 0;
|
||||
}
|
||||
@Override
|
||||
public void resetMissedCallsCount() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue