Updated to version 1.3.6 for release on 2024-05-12 Mother's Day! (#635)
* Updated to version 1.3.6 for release on 2024-05-12 Mother's Day!
This commit is contained in:
+1
-1
@@ -132,7 +132,7 @@ static void print_usage(char *filename)
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
char *value_string = NULL;
|
||||
char *value_string;
|
||||
bool status = false;
|
||||
BACNET_COV_DATA cov_data;
|
||||
BACNET_PROPERTY_VALUE value_list;
|
||||
|
||||
@@ -77,7 +77,6 @@ static void My_Router_Handler(BACNET_ADDRESS *src,
|
||||
uint16_t npdu_len)
|
||||
{
|
||||
uint16_t dnet = 0;
|
||||
uint16_t len = 0;
|
||||
uint16_t j = 0;
|
||||
|
||||
switch (npdu_data->network_message_type) {
|
||||
@@ -94,7 +93,7 @@ static void My_Router_Handler(BACNET_ADDRESS *src,
|
||||
/* It shall be transmitted with a local broadcast address,
|
||||
and shall never be routed. */
|
||||
if (npdu_len >= 2) {
|
||||
len += decode_unsigned16(npdu, &dnet);
|
||||
(void)decode_unsigned16(npdu, &dnet);
|
||||
printf(": network number = %u\n", (unsigned)dnet);
|
||||
} else {
|
||||
printf(": network number = missing!\n");
|
||||
@@ -104,7 +103,7 @@ static void My_Router_Handler(BACNET_ADDRESS *src,
|
||||
contain SNET/SADR or DNET/DADR information In the NPCI or
|
||||
that are sent with a local unicast address. */
|
||||
if (npdu_len >= 2) {
|
||||
len += decode_unsigned16(npdu, &dnet);
|
||||
(void)decode_unsigned16(npdu, &dnet);
|
||||
printf(": network number = %u. SNET=%u\n", (unsigned)dnet,
|
||||
(unsigned)src->net);
|
||||
} else {
|
||||
|
||||
@@ -254,7 +254,7 @@ int main(int argc, char *argv[])
|
||||
time_t current_seconds = 0;
|
||||
time_t timeout_seconds = 0;
|
||||
bool found = false;
|
||||
char *value_string = NULL;
|
||||
char *value_string;
|
||||
bool status = false;
|
||||
int args_remaining = 0, tag_value_arg = 0, i = 0;
|
||||
long property_tag;
|
||||
|
||||
Reference in New Issue
Block a user