Updated version

connection_type_change
Robinson 2021-04-08 15:27:29 +02:00
parent bfc66ef492
commit 6eee42cb35
16 changed files with 16 additions and 16 deletions

View File

@ -7,7 +7,7 @@ object Arp {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
// Now setup ARP Proxy for this interface (so ARP requests are answered correctly)
fun proxyAdd(interfaceName: String) {

View File

@ -10,7 +10,7 @@ object Dhcp {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
fun start(id: String, interfaceName: String) {
if (Common.OS_LINUX) {

View File

@ -18,7 +18,7 @@ object Dns {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
const val DEFAULT_SEARCH_DOMAIN = ""

View File

@ -20,7 +20,7 @@ object IP {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
/**
* The [InetAddress] that represents the loopback address. If IPv6 stack is available, it will refer to

View File

@ -10,7 +10,7 @@ object IPRoute {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
private val reservedTable = StringBuilder(2048)
private val tableNames: MutableMap<Int, String?> = HashMap(256)

View File

@ -38,7 +38,7 @@ object IPv4 {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
/**
* Returns `true` if IPv4 should be used even if the system supports both IPv4 and IPv6. Setting this

View File

@ -32,7 +32,7 @@ object IPv6 {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
/**
* Maximum amount of value adding characters in between IPV6 separators

View File

@ -9,7 +9,7 @@ object IfConfig {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
fun assignMac(interfaceName: String, interfaceMac: String) {
if (Common.OS_LINUX) {

View File

@ -10,7 +10,7 @@ object Iface {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
private val ifToIp: MutableMap<String, String> = HashMap()

View File

@ -19,7 +19,7 @@ object Mac {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
enum class MacDelimiter(val delimiter: String) {
COLON(":"),

View File

@ -11,7 +11,7 @@ object NameSpace {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
object Route {
fun flush(nameSpace: String) {

View File

@ -9,7 +9,7 @@ object Route {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
fun flush() {
Executor.run("/sbin/ip", "route", "flush", "cache")

View File

@ -20,7 +20,7 @@ object Sntp {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
/**
* SNTP client for retrieving time.

View File

@ -37,7 +37,7 @@ object SocketUtils {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
private val EMPTY = Collections.enumeration(emptyList<Any>())

View File

@ -9,7 +9,7 @@ object VirtualEth {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
fun add(host: String, guest: String) {
if (Common.OS_LINUX) {

View File

@ -16,7 +16,7 @@ class Ping {
/**
* Gets the version number.
*/
const val version = "2.1"
const val version = "2.2"
}
private val count = 4