20 lines
955 B
Java
20 lines
955 B
Java
package com.tridium.bacnet.stack.link.ip;
|
|
|
|
public interface BvllConst {
|
|
public static final int BVLC_RESULT = 0;
|
|
public static final int BVLC_TYPE_BACNET_IP = 129;
|
|
public static final int BVLL_BASE_LENGTH = 4;
|
|
public static final int BVLL_LENGTH_OFFSET = 2;
|
|
public static final int DELETE_FOREIGN_DEVICE_TABLE_ENTRY = 8;
|
|
public static final int DISTRIBUTE_BROADCAST_TO_NETWORK = 9;
|
|
public static final int FORWARDED_NPDU = 4;
|
|
public static final int ORIGINAL_BROADCAST_NPDU = 11;
|
|
public static final int ORIGINAL_UNICAST_NPDU = 10;
|
|
public static final int READ_BROADCAST_DISTRIBUTION_TABLE = 2;
|
|
public static final int READ_BROADCAST_DISTRIBUTION_TABLE_ACK = 3;
|
|
public static final int READ_FOREIGN_DEVICE_TABLE = 6;
|
|
public static final int READ_FOREIGN_DEVICE_TABLE_ACK = 7;
|
|
public static final int REGISTER_FOREIGN_DEVICE = 5;
|
|
public static final int WRITE_BROADCAST_DISTRIBUTION_TABLE = 1;
|
|
}
|