Indented with standard indent rules.
This commit is contained in:
@@ -273,8 +273,7 @@ int main(int argc, char *argv[]) {
|
||||
Init_DataLink();
|
||||
/* configure the timeout values */
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds =
|
||||
(apdu_timeout() / 1000) * apdu_retries();
|
||||
timeout_seconds = (apdu_timeout() / 1000) * apdu_retries();
|
||||
/* try to bind with the device */
|
||||
Send_WhoIs(Target_Device_Object_Instance, Target_Device_Object_Instance);
|
||||
/* loop forever */
|
||||
|
||||
@@ -431,8 +431,7 @@ int main(int argc, char *argv[]) {
|
||||
Init_DataLink();
|
||||
/* configure the timeout values */
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds =
|
||||
(apdu_timeout() / 1000) * apdu_retries();
|
||||
timeout_seconds = (apdu_timeout() / 1000) * apdu_retries();
|
||||
/* try to bind with the device */
|
||||
found =
|
||||
address_bind_request(Target_Device_Object_Instance, &max_apdu,
|
||||
|
||||
@@ -68,8 +68,7 @@ void Send_Who_Is_Router_To_Network(
|
||||
BACNET_NPDU_DATA npdu_data;
|
||||
|
||||
npdu_encode_npdu_network(&npdu_data,
|
||||
NETWORK_MESSAGE_WHO_IS_ROUTER_TO_NETWORK,
|
||||
MESSAGE_PRIORITY_NORMAL);
|
||||
NETWORK_MESSAGE_WHO_IS_ROUTER_TO_NETWORK, MESSAGE_PRIORITY_NORMAL);
|
||||
/* fixme: should dnet/dlen/dadr be set in NPDU? */
|
||||
pdu_len =
|
||||
npdu_encode_pdu(&Handler_Transmit_Buffer[0], NULL, NULL, &npdu_data);
|
||||
@@ -90,7 +89,8 @@ void Send_Who_Is_Router_To_Network(
|
||||
pdu_len);
|
||||
#if PRINT_ENABLED
|
||||
if (bytes_sent <= 0)
|
||||
fprintf(stderr, "Failed to Send Who-Is-Router-To-Network Request (%s)!\n",
|
||||
fprintf(stderr,
|
||||
"Failed to Send Who-Is-Router-To-Network Request (%s)!\n",
|
||||
strerror(errno));
|
||||
#endif
|
||||
}
|
||||
@@ -109,8 +109,7 @@ void Send_I_Am_Router_To_Network(
|
||||
unsigned index = 0;
|
||||
|
||||
npdu_encode_npdu_network(&npdu_data,
|
||||
NETWORK_MESSAGE_I_AM_ROUTER_TO_NETWORK,
|
||||
MESSAGE_PRIORITY_NORMAL);
|
||||
NETWORK_MESSAGE_I_AM_ROUTER_TO_NETWORK, MESSAGE_PRIORITY_NORMAL);
|
||||
pdu_len =
|
||||
npdu_encode_pdu(&Handler_Transmit_Buffer[0], NULL, NULL, &npdu_data);
|
||||
/* encode the optional DNET list portion of the packet */
|
||||
@@ -134,7 +133,8 @@ void Send_I_Am_Router_To_Network(
|
||||
pdu_len);
|
||||
#if PRINT_ENABLED
|
||||
if (bytes_sent <= 0)
|
||||
fprintf(stderr, "Failed to send I-Am-Router-To-Network message (%s)!\n",
|
||||
fprintf(stderr,
|
||||
"Failed to send I-Am-Router-To-Network message (%s)!\n",
|
||||
strerror(errno));
|
||||
#endif
|
||||
}
|
||||
@@ -152,8 +152,7 @@ void Send_Initialize_Routing_Table(
|
||||
BACNET_ROUTER_PORT *router_port;
|
||||
unsigned i = 0; /* counter */
|
||||
|
||||
npdu_encode_npdu_network(&npdu_data,
|
||||
NETWORK_MESSAGE_INIT_RT_TABLE,
|
||||
npdu_encode_npdu_network(&npdu_data, NETWORK_MESSAGE_INIT_RT_TABLE,
|
||||
MESSAGE_PRIORITY_NORMAL);
|
||||
pdu_len =
|
||||
npdu_encode_pdu(&Handler_Transmit_Buffer[0], NULL, NULL, &npdu_data);
|
||||
@@ -167,8 +166,8 @@ void Send_Initialize_Routing_Table(
|
||||
if (number_of_ports) {
|
||||
router_port = router_port_list;
|
||||
while (router_port) {
|
||||
len = encode_unsigned16(
|
||||
&Handler_Transmit_Buffer[pdu_len],
|
||||
len =
|
||||
encode_unsigned16(&Handler_Transmit_Buffer[pdu_len],
|
||||
router_port->dnet);
|
||||
pdu_len += len;
|
||||
Handler_Transmit_Buffer[pdu_len++] = router_port->id;
|
||||
@@ -187,7 +186,8 @@ void Send_Initialize_Routing_Table(
|
||||
pdu_len);
|
||||
#if PRINT_ENABLED
|
||||
if (bytes_sent <= 0)
|
||||
fprintf(stderr, "Failed to send Initialize-Routing-Table message (%s)!\n",
|
||||
fprintf(stderr,
|
||||
"Failed to send Initialize-Routing-Table message (%s)!\n",
|
||||
strerror(errno));
|
||||
#endif
|
||||
}
|
||||
@@ -201,8 +201,7 @@ void Send_Initialize_Routing_Table_Ack(
|
||||
int bytes_sent = 0;
|
||||
BACNET_NPDU_DATA npdu_data;
|
||||
|
||||
npdu_encode_npdu_network(&npdu_data,
|
||||
NETWORK_MESSAGE_INIT_RT_TABLE_ACK,
|
||||
npdu_encode_npdu_network(&npdu_data, NETWORK_MESSAGE_INIT_RT_TABLE_ACK,
|
||||
MESSAGE_PRIORITY_NORMAL);
|
||||
pdu_len =
|
||||
npdu_encode_pdu(&Handler_Transmit_Buffer[0], NULL, NULL, &npdu_data);
|
||||
@@ -213,7 +212,8 @@ void Send_Initialize_Routing_Table_Ack(
|
||||
pdu_len);
|
||||
#if PRINT_ENABLED
|
||||
if (bytes_sent <= 0)
|
||||
fprintf(stderr, "Failed to Send Initialize-Routing-Table-Ack message (%s)!\n",
|
||||
fprintf(stderr,
|
||||
"Failed to Send Initialize-Routing-Table-Ack message (%s)!\n",
|
||||
strerror(errno));
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -196,36 +196,35 @@ int main(int argc, char *argv[]) {
|
||||
filename_remove_path(argv[0]));
|
||||
return 0;
|
||||
}
|
||||
if ((argc > 1) && (strcmp(argv[1], "--help") == 0)) {
|
||||
if ((
|
||||
argc > 1) && (
|
||||
strcmp(argv[1],
|
||||
"--help") == 0)) {
|
||||
printf("Send BACnet I-Am-Router-To-Network message for \r\n"
|
||||
"one or more networks.\r\n"
|
||||
"\r\nDNET:\r\n"
|
||||
"one or more networks.\r\n" "\r\nDNET:\r\n"
|
||||
"BACnet destination network number 0-65534\r\n"
|
||||
"To send a I-Am-Router-To-Network message for DNET 86:\r\n"
|
||||
"%s 86\r\n"
|
||||
"To send a I-Am-Router-To-Network message for multiple DNETs\r\n"
|
||||
"use the following command:\r\n"
|
||||
"%s 86 42 24 14\r\n",
|
||||
filename_remove_path(argv[0]),
|
||||
filename_remove_path(argv[0]));
|
||||
"use the following command:\r\n" "%s 86 42 24 14\r\n",
|
||||
filename_remove_path(argv[0]), filename_remove_path(argv[0]));
|
||||
return 0;
|
||||
}
|
||||
/* decode the command line parameters */
|
||||
if (argc > 1) {
|
||||
for (arg_count = 1; arg_count < argc; arg_count++) {
|
||||
if (arg_count > MAX_ROUTER_DNETS) {
|
||||
fprintf(stderr,
|
||||
"Limited to %u DNETS. Sorry!\r\n",
|
||||
fprintf(stderr, "Limited to %u DNETS. Sorry!\r\n",
|
||||
MAX_ROUTER_DNETS);
|
||||
break;
|
||||
}
|
||||
Target_Router_Networks[arg_count-1] = strtol(argv[arg_count], NULL, 0);
|
||||
Target_Router_Networks[arg_count - 1] =
|
||||
strtol(argv[arg_count], NULL, 0);
|
||||
/* mark the end of list */
|
||||
Target_Router_Networks[arg_count] = -1;
|
||||
/* invalid DNET? */
|
||||
if (Target_Router_Networks[arg_count - 1] >= 65535) {
|
||||
fprintf(stderr,
|
||||
"DNET=%u - it must be less than %u\r\n",
|
||||
fprintf(stderr, "DNET=%u - it must be less than %u\r\n",
|
||||
Target_Router_Networks[arg_count - 1], 65535);
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -50,6 +50,7 @@
|
||||
|
||||
/* buffer used for receive */
|
||||
static uint8_t Rx_Buf[MAX_MPDU] = { 0 };
|
||||
|
||||
/* target address */
|
||||
static BACNET_ADDRESS Target_Router_Address;
|
||||
static BACNET_ROUTER_PORT *Target_Router_Port_List;
|
||||
@@ -187,8 +188,8 @@ static void Init_DataLink(
|
||||
#endif
|
||||
}
|
||||
|
||||
static void address_parse(BACNET_ADDRESS *dst, int argc, char *argv[])
|
||||
{
|
||||
static void address_parse(BACNET_ADDRESS * dst,
|
||||
int argc, char *argv[]) {
|
||||
unsigned mac[6];
|
||||
unsigned port;
|
||||
int count = 0;
|
||||
@@ -196,18 +197,18 @@ static void address_parse(BACNET_ADDRESS *dst, int argc, char *argv[])
|
||||
|
||||
if (argc > 0) {
|
||||
count =
|
||||
sscanf(argv[0], "%u.%u.%u.%u:%u", &mac[0],
|
||||
&mac[1], &mac[2], &mac[3], &port);
|
||||
sscanf(argv[0], "%u.%u.%u.%u:%u", &mac[0], &mac[1], &mac[2],
|
||||
&mac[3], &port);
|
||||
if (count == 5) {
|
||||
dst->mac_len = 6;
|
||||
for (index = 0; index < 4; index++) {
|
||||
dst->mac[index] = mac[index];
|
||||
}
|
||||
encode_unsigned16(&dst->mac[4], port);
|
||||
} encode_unsigned16(&dst->mac[4],
|
||||
port);
|
||||
} else {
|
||||
count =
|
||||
sscanf(argv[0], "%x:%x:%x:%x:%x:%x", &mac[0],
|
||||
&mac[1], &mac[2], &mac[3], &mac[4], &mac[5]);
|
||||
sscanf(argv[0], "%x:%x:%x:%x:%x:%x", &mac[0], &mac[1], &mac[2],
|
||||
&mac[3], &mac[4], &mac[5]);
|
||||
dst->mac_len = count;
|
||||
for (index = 0; index < MAX_MAC_LEN; index++) {
|
||||
if (index < count) {
|
||||
@@ -232,18 +233,19 @@ int main(int argc, char *argv[]) {
|
||||
filename_remove_path(argv[0]));
|
||||
return 0;
|
||||
}
|
||||
if ((argc > 1) && (strcmp(argv[1], "--help") == 0)) {
|
||||
if ((
|
||||
argc > 1) && (
|
||||
strcmp(argv[1],
|
||||
"--help") == 0)) {
|
||||
printf("Send BACnet Initialize-Routing-Table message to a network\r\n"
|
||||
"and wait for responses. Displays their network information.\r\n"
|
||||
"\r\n"
|
||||
"address:\r\n"
|
||||
"\r\n" "address:\r\n"
|
||||
"MAC address in xx:xx:xx:xx:xx:xx format or IP x.x.x.x:port\r\n"
|
||||
"number-of-ports:\r\n"
|
||||
"Number of ports to update along with port-info data\r\n"
|
||||
"To query the complete routing table, use 0.\r\n"
|
||||
"To query using Initialize-Routing-Table message to 192.168.0.18:\r\n"
|
||||
"%s 192.168.0.18:47808 0\r\n",
|
||||
filename_remove_path(argv[0]));
|
||||
"%s 192.168.0.18:47808 0\r\n", filename_remove_path(argv[0]));
|
||||
return 0;
|
||||
}
|
||||
/* decode the command line parameters */
|
||||
@@ -262,8 +264,7 @@ int main(int argc, char *argv[]) {
|
||||
address_init();
|
||||
Init_DataLink();
|
||||
/* send the request */
|
||||
Send_Initialize_Routing_Table(
|
||||
&Target_Router_Address,
|
||||
Send_Initialize_Routing_Table(&Target_Router_Address,
|
||||
Target_Router_Port_List);
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -806,8 +806,7 @@ int Device_Encode_Property_APDU(
|
||||
}
|
||||
break;
|
||||
case PROP_MAX_APDU_LENGTH_ACCEPTED:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0],MAX_APDU);
|
||||
apdu_len = encode_application_unsigned(&apdu[0], MAX_APDU);
|
||||
break;
|
||||
case PROP_SEGMENTATION_SUPPORTED:
|
||||
apdu_len =
|
||||
@@ -818,8 +817,7 @@ int Device_Encode_Property_APDU(
|
||||
apdu_len = encode_application_unsigned(&apdu[0], apdu_timeout());
|
||||
break;
|
||||
case PROP_NUMBER_OF_APDU_RETRIES:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0], apdu_retries());
|
||||
apdu_len = encode_application_unsigned(&apdu[0], apdu_retries());
|
||||
break;
|
||||
case PROP_DEVICE_ADDRESS_BINDING:
|
||||
/* FIXME: encode the list here, if it exists */
|
||||
@@ -894,8 +892,7 @@ bool Device_Write_Property(
|
||||
case PROP_NUMBER_OF_APDU_RETRIES:
|
||||
if (value.tag == BACNET_APPLICATION_TAG_UNSIGNED_INT) {
|
||||
/* FIXME: bounds check? */
|
||||
apdu_retries_set((uint8_t) value.type.
|
||||
Unsigned_Int);
|
||||
apdu_retries_set((uint8_t) value.type.Unsigned_Int);
|
||||
status = true;
|
||||
} else {
|
||||
*error_class = ERROR_CLASS_PROPERTY;
|
||||
|
||||
@@ -325,8 +325,7 @@ int main(int argc, char *argv[]) {
|
||||
Init_DataLink();
|
||||
/* configure the timeout values */
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds =
|
||||
(apdu_timeout() / 1000) * apdu_retries();
|
||||
timeout_seconds = (apdu_timeout() / 1000) * apdu_retries();
|
||||
/* try to bind with the device */
|
||||
Send_WhoIs(Target_Device_Object_Instance, Target_Device_Object_Instance);
|
||||
/* loop forever */
|
||||
|
||||
@@ -306,8 +306,7 @@ int main(int argc, char *argv[]) {
|
||||
Init_DataLink();
|
||||
/* configure the timeout values */
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds =
|
||||
(apdu_timeout() / 1000) * apdu_retries();
|
||||
timeout_seconds = (apdu_timeout() / 1000) * apdu_retries();
|
||||
/* try to bind with the device */
|
||||
found =
|
||||
address_bind_request(Target_Device_Object_Instance, &max_apdu,
|
||||
|
||||
@@ -267,8 +267,7 @@ int main(int argc, char *argv[]) {
|
||||
Init_DataLink();
|
||||
/* configure the timeout values */
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds =
|
||||
(apdu_timeout() / 1000) * apdu_retries();
|
||||
timeout_seconds = (apdu_timeout() / 1000) * apdu_retries();
|
||||
/* try to bind with the device */
|
||||
Send_WhoIs(Target_Device_Object_Instance, Target_Device_Object_Instance);
|
||||
/* loop forever */
|
||||
|
||||
@@ -212,8 +212,8 @@ int main(int argc, char *argv[]) {
|
||||
filename_remove_path(argv[0]), filename_remove_path(argv[0]));
|
||||
return 0;
|
||||
}
|
||||
/* decode the command line parameters */ cov_data.
|
||||
subscriberProcessIdentifier = strtol(argv[1], NULL, 0);
|
||||
/* decode the command line parameters */
|
||||
cov_data.subscriberProcessIdentifier = strtol(argv[1], NULL, 0);
|
||||
cov_data.initiatingDeviceIdentifier = strtol(argv[2], NULL, 0);
|
||||
cov_data.monitoredObjectIdentifier.type = strtol(argv[3], NULL, 0);
|
||||
cov_data.monitoredObjectIdentifier.instance = strtol(argv[4], NULL, 0);
|
||||
|
||||
@@ -188,8 +188,8 @@ static void Init_DataLink(
|
||||
#endif
|
||||
}
|
||||
|
||||
static void address_parse(BACNET_ADDRESS *dst, int argc, char *argv[])
|
||||
{
|
||||
static void address_parse(BACNET_ADDRESS * dst,
|
||||
int argc, char *argv[]) {
|
||||
int dnet = 0;
|
||||
unsigned mac[6];
|
||||
int count = 0;
|
||||
@@ -197,8 +197,8 @@ static void address_parse(BACNET_ADDRESS *dst, int argc, char *argv[])
|
||||
|
||||
if (argc > 0) {
|
||||
count =
|
||||
sscanf(argv[0], "%x:%x:%x:%x:%x:%x", &mac[0],
|
||||
&mac[1], &mac[2], &mac[3], &mac[4], &mac[5]);
|
||||
sscanf(argv[0], "%x:%x:%x:%x:%x:%x", &mac[0], &mac[1], &mac[2],
|
||||
&mac[3], &mac[4], &mac[5]);
|
||||
dst->mac_len = count;
|
||||
for (index = 0; index < MAX_MAC_LEN; index++) {
|
||||
if (index < count) {
|
||||
@@ -215,8 +215,8 @@ static void address_parse(BACNET_ADDRESS *dst, int argc, char *argv[])
|
||||
if (dnet) {
|
||||
if (argc > 2) {
|
||||
count =
|
||||
sscanf(argv[2], "%x:%x:%x:%x:%x:%x", &mac[0],
|
||||
&mac[1], &mac[2], &mac[3], &mac[4], &mac[5]);
|
||||
sscanf(argv[2], "%x:%x:%x:%x:%x:%x", &mac[0], &mac[1], &mac[2],
|
||||
&mac[3], &mac[4], &mac[5]);
|
||||
dst->len = count;
|
||||
for (index = 0; index < MAX_MAC_LEN; index++) {
|
||||
if (index < count) {
|
||||
@@ -248,25 +248,19 @@ int main(int argc, char *argv[]) {
|
||||
time_t timeout_seconds = 0;
|
||||
|
||||
if (argc < 2) {
|
||||
printf("Usage: %s DNET [MAC]\r\n",
|
||||
filename_remove_path(argv[0]));
|
||||
printf("Usage: %s DNET [MAC]\r\n", filename_remove_path(argv[0]));
|
||||
return 0;
|
||||
}
|
||||
if ((argc > 1) && (strcmp(argv[1], "--help") == 0)) {
|
||||
printf("Send BACnet Who-Is-Router-To-Network message to a network.\r\n"
|
||||
"\r\n"
|
||||
"DNET:\r\n"
|
||||
"BACnet destination network number 0-65534\r\n"
|
||||
"MAC:\r\n"
|
||||
"Optional MAC address of router for unicast message\r\n"
|
||||
"\r\n" "DNET:\r\n" "BACnet destination network number 0-65534\r\n"
|
||||
"MAC:\r\n" "Optional MAC address of router for unicast message\r\n"
|
||||
"Format: xx[:xx:xx:xx:xx:xx] [dnet xx[:xx:xx:xx:xx:xx]]\r\n"
|
||||
"Use hexidecimal MAC addresses.\r\n"
|
||||
"\r\n"
|
||||
"Use hexidecimal MAC addresses.\r\n" "\r\n"
|
||||
"To send a Who-Is-Router-To-Network request to DNET 86:\r\n"
|
||||
"%s 86\r\n"
|
||||
"To send a Who-Is-Router-To-Network request to all devices:\r\n"
|
||||
"%s -1\r\n",
|
||||
filename_remove_path(argv[0]),
|
||||
"%s -1\r\n", filename_remove_path(argv[0]),
|
||||
filename_remove_path(argv[0]));
|
||||
return 0;
|
||||
}
|
||||
@@ -274,8 +268,7 @@ int main(int argc, char *argv[]) {
|
||||
if (argc > 1) {
|
||||
Target_Router_Network = strtol(argv[1], NULL, 0);
|
||||
if (Target_Router_Network >= 65535) {
|
||||
fprintf(stderr,
|
||||
"DNET=%u - it must be less than %u\r\n",
|
||||
fprintf(stderr, "DNET=%u - it must be less than %u\r\n",
|
||||
Target_Router_Network, 65535);
|
||||
return 1;
|
||||
}
|
||||
@@ -294,8 +287,7 @@ int main(int argc, char *argv[]) {
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds = apdu_timeout() / 1000;
|
||||
/* send the request */
|
||||
Send_Who_Is_Router_To_Network(
|
||||
&Target_Router_Address,
|
||||
Send_Who_Is_Router_To_Network(&Target_Router_Address,
|
||||
Target_Router_Network);
|
||||
/* loop forever */
|
||||
for (;;) {
|
||||
|
||||
@@ -282,8 +282,7 @@ int main(int argc, char *argv[]) {
|
||||
Init_DataLink();
|
||||
/* configure the timeout values */
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds =
|
||||
(apdu_timeout() / 1000) * apdu_retries();
|
||||
timeout_seconds = (apdu_timeout() / 1000) * apdu_retries();
|
||||
/* try to bind with the device */
|
||||
Send_WhoIs(Target_Device_Object_Instance, Target_Device_Object_Instance);
|
||||
/* loop forever */
|
||||
|
||||
@@ -402,8 +402,7 @@ int main(int argc, char *argv[]) {
|
||||
Init_DataLink();
|
||||
/* configure the timeout values */
|
||||
last_seconds = time(NULL);
|
||||
timeout_seconds =
|
||||
(apdu_timeout() / 1000) * apdu_retries();
|
||||
timeout_seconds = (apdu_timeout() / 1000) * apdu_retries();
|
||||
/* try to bind with the device */
|
||||
found =
|
||||
address_bind_request(Target_Device_Object_Instance, &max_apdu,
|
||||
|
||||
@@ -176,10 +176,14 @@ extern "C" {
|
||||
uint8_t ** service_request,
|
||||
uint16_t * service_request_len);
|
||||
|
||||
uint16_t apdu_timeout(void);
|
||||
void apdu_timeout_set(uint16_t value);
|
||||
uint8_t apdu_retries(void);
|
||||
void apdu_retries_set(uint8_t value);
|
||||
uint16_t apdu_timeout(
|
||||
void);
|
||||
void apdu_timeout_set(
|
||||
uint16_t value);
|
||||
uint8_t apdu_retries(
|
||||
void);
|
||||
void apdu_retries_set(
|
||||
uint8_t value);
|
||||
|
||||
void apdu_handler(
|
||||
BACNET_ADDRESS * src, /* source address */
|
||||
|
||||
@@ -397,8 +397,7 @@ int Device_Encode_Property_APDU(
|
||||
}
|
||||
break;
|
||||
case PROP_MAX_APDU_LENGTH_ACCEPTED:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0], MAX_APDU);
|
||||
apdu_len = encode_application_unsigned(&apdu[0], MAX_APDU);
|
||||
break;
|
||||
case PROP_SEGMENTATION_SUPPORTED:
|
||||
apdu_len =
|
||||
@@ -406,13 +405,10 @@ int Device_Encode_Property_APDU(
|
||||
Device_Segmentation_Supported());
|
||||
break;
|
||||
case PROP_APDU_TIMEOUT:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0], apdu_timeout());
|
||||
apdu_len = encode_application_unsigned(&apdu[0], apdu_timeout());
|
||||
break;
|
||||
case PROP_NUMBER_OF_APDU_RETRIES:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0],
|
||||
apdu_retries());
|
||||
apdu_len = encode_application_unsigned(&apdu[0], apdu_retries());
|
||||
break;
|
||||
case PROP_DEVICE_ADDRESS_BINDING:
|
||||
/* FIXME: encode the list here, if it exists */
|
||||
|
||||
@@ -75,7 +75,9 @@ void dlmstp_millisecond_timer(
|
||||
INCREMENT_AND_LIMIT_UINT16(SilenceTime);
|
||||
}
|
||||
|
||||
void get_abstime(struct timespec *abstime, unsigned long milliseconds)
|
||||
void get_abstime(
|
||||
struct timespec *abstime,
|
||||
unsigned long milliseconds)
|
||||
{
|
||||
struct timeval tp;
|
||||
unsigned long seconds;
|
||||
@@ -153,9 +155,7 @@ uint16_t dlmstp_receive(
|
||||
/* see if there is a packet available, and a place
|
||||
to put the reply (if necessary) and process it */
|
||||
get_abstime(&abstime, timeout);
|
||||
rv = pthread_cond_timedwait(
|
||||
&Receive_Packet_Flag,
|
||||
&Receive_Packet_Mutex,
|
||||
rv = pthread_cond_timedwait(&Receive_Packet_Flag, &Receive_Packet_Mutex,
|
||||
&abstime);
|
||||
if (rv == 0) {
|
||||
if (Receive_Packet.ready) {
|
||||
@@ -227,8 +227,8 @@ static void *dlmstp_master_fsm_task(
|
||||
if (milliseconds) {
|
||||
get_abstime(&abstime, milliseconds);
|
||||
/* we want an OS effecient way to wait for a frame */
|
||||
pthread_cond_timedwait(&Received_Frame_Flag,
|
||||
&Received_Frame_Mutex, &abstime);
|
||||
pthread_cond_timedwait(&Received_Frame_Flag, &Received_Frame_Mutex,
|
||||
&abstime);
|
||||
}
|
||||
MSTP_Master_Node_FSM(&MSTP_Port);
|
||||
}
|
||||
@@ -622,26 +622,28 @@ bool dlmstp_init(
|
||||
Receive_Packet.pdu_len = 0;
|
||||
rv = pthread_cond_init(&Receive_Packet_Flag, NULL);
|
||||
if (rv == -1) {
|
||||
fprintf(stderr, "MS/TP Interface: %s\n cannot allocate PThread Condition.\n",
|
||||
fprintf(stderr,
|
||||
"MS/TP Interface: %s\n cannot allocate PThread Condition.\n",
|
||||
ifname);
|
||||
exit(1);
|
||||
}
|
||||
rv = pthread_cond_init(&Received_Frame_Flag, NULL);
|
||||
if (rv == -1) {
|
||||
fprintf(stderr, "MS/TP Interface: %s\n cannot allocate PThread Condition.\n",
|
||||
fprintf(stderr,
|
||||
"MS/TP Interface: %s\n cannot allocate PThread Condition.\n",
|
||||
ifname);
|
||||
exit(1);
|
||||
}
|
||||
rv = pthread_mutex_init(&Receive_Packet_Mutex, NULL);
|
||||
if (rv == -1) {
|
||||
fprintf(stderr, "MS/TP Interface: %s\n cannot allocate PThread Mutex.\n",
|
||||
ifname);
|
||||
fprintf(stderr,
|
||||
"MS/TP Interface: %s\n cannot allocate PThread Mutex.\n", ifname);
|
||||
exit(1);
|
||||
}
|
||||
rv = pthread_mutex_init(&Received_Frame_Mutex, NULL);
|
||||
if (rv == -1) {
|
||||
fprintf(stderr, "MS/TP Interface: %s\n cannot allocate PThread Mutex.\n",
|
||||
ifname);
|
||||
fprintf(stderr,
|
||||
"MS/TP Interface: %s\n cannot allocate PThread Mutex.\n", ifname);
|
||||
exit(1);
|
||||
}
|
||||
/* initialize hardware */
|
||||
|
||||
@@ -117,12 +117,13 @@ uint16_t MSTP_Get_Reply(
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int network_init(const char *name, int protocol)
|
||||
static int network_init(
|
||||
const char *name,
|
||||
int protocol)
|
||||
{
|
||||
/* check to see if we are being run as root */
|
||||
if (getuid() != 0) {
|
||||
fprintf(stderr,
|
||||
"Requires root priveleges.\n");
|
||||
fprintf(stderr, "Requires root priveleges.\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -409,8 +409,7 @@ int Device_Encode_Property_APDU(
|
||||
}
|
||||
break;
|
||||
case PROP_MAX_APDU_LENGTH_ACCEPTED:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0], MAX_APDU);
|
||||
apdu_len = encode_application_unsigned(&apdu[0], MAX_APDU);
|
||||
break;
|
||||
case PROP_SEGMENTATION_SUPPORTED:
|
||||
apdu_len =
|
||||
@@ -418,13 +417,10 @@ int Device_Encode_Property_APDU(
|
||||
Device_Segmentation_Supported());
|
||||
break;
|
||||
case PROP_APDU_TIMEOUT:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0], apdu_timeout());
|
||||
apdu_len = encode_application_unsigned(&apdu[0], apdu_timeout());
|
||||
break;
|
||||
case PROP_NUMBER_OF_APDU_RETRIES:
|
||||
apdu_len =
|
||||
encode_application_unsigned(&apdu[0],
|
||||
apdu_retries());
|
||||
apdu_len = encode_application_unsigned(&apdu[0], apdu_retries());
|
||||
break;
|
||||
case PROP_DEVICE_ADDRESS_BINDING:
|
||||
/* FIXME: encode the list here, if it exists */
|
||||
|
||||
@@ -285,22 +285,26 @@ uint16_t apdu_decode_confirmed_service_request(
|
||||
return len;
|
||||
}
|
||||
|
||||
uint16_t apdu_timeout(void)
|
||||
uint16_t apdu_timeout(
|
||||
void)
|
||||
{
|
||||
return Timeout_Milliseconds;
|
||||
}
|
||||
|
||||
void apdu_timeout_set(uint16_t milliseconds)
|
||||
void apdu_timeout_set(
|
||||
uint16_t milliseconds)
|
||||
{
|
||||
Timeout_Milliseconds = milliseconds;
|
||||
}
|
||||
|
||||
uint8_t apdu_retries(void)
|
||||
uint8_t apdu_retries(
|
||||
void)
|
||||
{
|
||||
return Number_Of_Retries;
|
||||
}
|
||||
|
||||
void apdu_retries_set(uint8_t value)
|
||||
void apdu_retries_set(
|
||||
uint8_t value)
|
||||
{
|
||||
Number_Of_Retries = value;
|
||||
}
|
||||
|
||||
@@ -49,8 +49,7 @@ int arf_encode_apdu(
|
||||
|
||||
if (apdu) {
|
||||
apdu[0] = PDU_TYPE_CONFIRMED_SERVICE_REQUEST;
|
||||
apdu[1] =
|
||||
encode_max_segs_max_apdu(0, MAX_APDU);
|
||||
apdu[1] = encode_max_segs_max_apdu(0, MAX_APDU);
|
||||
apdu[2] = invoke_id;
|
||||
apdu[3] = SERVICE_CONFIRMED_ATOMIC_READ_FILE; /* service choice */
|
||||
apdu_len = 4;
|
||||
|
||||
Reference in New Issue
Block a user