updated version

connection_type_change
Robinson 2021-04-27 10:56:20 +02:00
parent d8ec62c680
commit 6fb1b23d01
19 changed files with 26 additions and 21 deletions

View File

@ -21,7 +21,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>NetworkUtils</artifactId>
<version>2.5</version>
<version>2.6</version>
</dependency>
</dependencies>
```
@ -30,7 +30,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:NetworkUtils:2.5")
implementation("com.dorkbox:NetworkUtils:2.6")
}
```

View File

@ -39,7 +39,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.5"
const val version = "2.6"
// set as project.ext
const val name = "NetworkUtils"

View File

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

View File

@ -15,7 +15,7 @@ internal object Common {
/**
* Gets the version number.
*/
const val version = "2.5"
const val version = "2.6"
val OS_LINUX: Boolean
val OS_WINDOWS: Boolean

View File

@ -10,7 +10,7 @@ object Dhcp {
/**
* Gets the version number.
*/
const val version = "2.5"
const val version = "2.6"
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.5"
const val version = "2.6"
const val DEFAULT_SEARCH_DOMAIN = ""
@ -101,3 +101,6 @@ object Dns {
}
}
}
//TODO add domain TLD, etc util tools

View File

@ -20,7 +20,7 @@ object IP {
/**
* Gets the version number.
*/
const val version = "2.5"
const val version = "2.6"
/**
* 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.5"
const val version = "2.6"
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.5"
const val version = "2.6"
/**
* Returns `true` if IPv4 should be used even if the system supports both IPv4 and IPv6. Setting this

View File

@ -33,7 +33,10 @@ object IPv6 {
/**
* Gets the version number.
*/
const val version = "2.5"
const val version = "2.6"
// used for subnet mask info
private val MINUS_ONE = BigInteger.valueOf(-1)
/**
* 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.5"
const val version = "2.6"
fun assignMac(interfaceName: String, interfaceMac: String) {
if (Common.OS_LINUX) {

View File

@ -1,7 +1,6 @@
package dorkbox.netUtil
import dorkbox.executor.Executor
import java.util.*
/**
*
@ -10,7 +9,7 @@ object Iface {
/**
* Gets the version number.
*/
const val version = "2.5"
const val version = "2.6"
private val ifToIp: MutableMap<String, String> = HashMap()

View File

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

View File

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

View File

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

View File

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

View File

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