Working on fix for issue #16

This commit is contained in:
Gideon le Grange 2015-03-29 13:06:34 +02:00
parent 5d05b76fe8
commit 9aa06f3380
1 changed files with 0 additions and 7 deletions

View File

@ -131,11 +131,4 @@ public abstract class ApiConnection {
* @throws me.legrange.mikrotik.MikrotikApiException Thrown if there is a problem canceling the command */ * @throws me.legrange.mikrotik.MikrotikApiException Thrown if there is a problem canceling the command */
public abstract void cancel(String tag) throws MikrotikApiException; public abstract void cancel(String tag) throws MikrotikApiException;
/** default TCP port used by Mikrotik API */
private static final int DEFAULT_PORT = 8728;
/** default TCP TLS port used by Mikrotik API */
private static final int DEFAULT_TLS_PORT = 8729;
/** default connection timeout to use when opening the connection */
private static final int DEFAULT_CONNECTION_TIMEOUT = 60000;
} }