Updated version

connection_type_change
Robinson 2021-04-08 19:59:55 +02:00
parent d5ceece82f
commit e4a0522093
18 changed files with 20 additions and 21 deletions

View File

@ -21,7 +21,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>NetworkUtils</artifactId>
<version>2.1</version>
<version>2.3</version>
</dependency>
</dependencies>
```
@ -30,7 +30,7 @@ Gradle Info
```
dependencies {
...
compile 'com.dorkbox:NetworkUtils:2.1'
compile 'com.dorkbox:NetworkUtils:2.3'
}
```

View File

@ -32,7 +32,7 @@ plugins {
id("com.dorkbox.GradleUtils") version "1.17"
id("com.dorkbox.Licensing") version "2.5.5"
id("com.dorkbox.VersionUpdate") version "2.2"
id("com.dorkbox.VersionUpdate") version "2.3"
id("com.dorkbox.GradlePublish") version "1.10"
// id("com.dorkbox.GradleModuleInfo") version "1.1"
@ -43,7 +43,7 @@ object Extras {
// set for the project
const val description = "Utilities for managing network configurations, IP/MAC address conversion, and ping (via OS native commands)"
const val group = "com.dorkbox"
const val version = "2.1"
const val version = "2.3"
// set as project.ext
const val name = "NetworkUtils"

View File

@ -7,7 +7,7 @@ object Arp {
/**
* Gets the version number.
*/
const val version = "2.2"
const val version = "2.3"
// 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.2"
const val version = "2.3"
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.2"
const val version = "2.3"
const val DEFAULT_SEARCH_DOMAIN = ""

View File

@ -20,7 +20,7 @@ object IP {
/**
* Gets the version number.
*/
const val version = "2.2"
const val version = "2.3"
/**
* 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.2"
const val version = "2.3"
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.2"
const val version = "2.3"
/**
* 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.2"
const val version = "2.3"
/**
* 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.2"
const val version = "2.3"
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.2"
const val version = "2.3"
private val ifToIp: MutableMap<String, String> = HashMap()

View File

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

View File

@ -2,7 +2,6 @@ package dorkbox.netUtil
import dorkbox.executor.Executor
import java.io.File
import java.util.*
/**
*
@ -11,7 +10,7 @@ object NameSpace {
/**
* Gets the version number.
*/
const val version = "2.2"
const val version = "2.3"
object Route {
fun flush(nameSpace: String) {

View File

@ -9,7 +9,7 @@ object Route {
/**
* Gets the version number.
*/
const val version = "2.2"
const val version = "2.3"
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.2"
const val version = "2.3"
/**
* SNTP client for retrieving time.

View File

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

View File

@ -9,7 +9,7 @@ object VirtualEth {
/**
* Gets the version number.
*/
const val version = "2.2"
const val version = "2.3"
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.2"
const val version = "2.3"
}
private val count = 4