link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,19 @@
package com.tridium.lonworks.netmgmt;
public interface NetMgmtConst {
public static final int AUTHENTICATED_DESCRIPTOR = 4;
public static final int CRITICAL_DESCRIPTOR = 3;
public static final boolean FAR_SIDE = true;
public static final int MAX_CONNECTIONS = 12287;
public static final int MAX_CRITICAL_TARGETS = 5;
public static final int MAX_NUM_GROUPS = 256;
public static final boolean NEAR_SIDE = false;
public static final boolean NO_AUTHENTICATION = false;
public static final int RELIABLE_DESCRIPTOR = 2;
public static final int SERVICE_PIN_TIMEOUT_MILLI = 300000;
public static final int SERVICE_PIN_TIMEOUT_MINUTE = 5;
public static final int SERVICE_PIN_TIMEOUT_SECONDS = 300;
public static final int STANDARD_DESCRIPTOR = 1;
public static final int UNKNOWN_DESCRIPTOR = 0;
public static final boolean USE_AUTHENTICATION = true;
}