Fix compilation bug on Android

This commit is contained in:
François Grisez 2014-09-04 10:02:02 +02:00
parent 8f33fcb711
commit 4014c07dd9

View 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;
}
}