mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
add set signaling transport to jliblinphone api
This commit is contained in:
parent
88b8d03631
commit
484d9f0999
1 changed files with 16 additions and 1 deletions
|
|
@ -70,7 +70,18 @@ public interface LinphoneCore {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
static public class Transport {
|
||||
public final static Transport udp =new Transport("udp");
|
||||
public final static Transport tcp =new Transport("tcp");
|
||||
private final String mStringValue;
|
||||
|
||||
private Transport(String stringValue) {
|
||||
mStringValue=stringValue;
|
||||
}
|
||||
public String toString() {
|
||||
return mStringValue;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* clear all added proxy config
|
||||
*/
|
||||
|
|
@ -186,6 +197,7 @@ public interface LinphoneCore {
|
|||
*/
|
||||
public void clearCallLogs();
|
||||
|
||||
<<<<<<< master
|
||||
|
||||
/***
|
||||
* get payload type from mime type an clock rate
|
||||
|
|
@ -200,4 +212,7 @@ public interface LinphoneCore {
|
|||
|
||||
public boolean isEchoCancellationEnabled();
|
||||
|
||||
=======
|
||||
public void setSignalingTransport(Transport aTransport);
|
||||
>>>>>>> local
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue