mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Fix compilation bug on Android
This commit is contained in:
parent
8f33fcb711
commit
4014c07dd9
1 changed files with 40 additions and 0 deletions
40
java/impl/org/linphone/core/TunnelConfig.java
Normal file
40
java/impl/org/linphone/core/TunnelConfig.java
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
package org.linphone.core;
|
||||
|
||||
public class TunnelConfig {
|
||||
private String host = null;
|
||||
private int port = 443;
|
||||
private int remoteUdpMirrorPort = 12345;
|
||||
private int delay = 1000;
|
||||
|
||||
public String getHost() {
|
||||
return host;
|
||||
}
|
||||
|
||||
public void setHost(String host) {
|
||||
this.host = host;
|
||||
}
|
||||
|
||||
public int getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(int port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
public int getRemoteUdpMirrorPort() {
|
||||
return remoteUdpMirrorPort;
|
||||
}
|
||||
|
||||
public void setRemoteUdpMirrorPort(int remoteUdpMirrorPort) {
|
||||
this.remoteUdpMirrorPort = remoteUdpMirrorPort;
|
||||
}
|
||||
|
||||
public int getDelay() {
|
||||
return delay;
|
||||
}
|
||||
|
||||
public void setDelay(int delay) {
|
||||
this.delay = delay;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue