Modified to check password in the same fashion as h_dcc. This saves on having a static BACnet string which frees up 1.5KB.
This commit is contained in:
@@ -39,7 +39,6 @@
|
|||||||
#include "rd.h"
|
#include "rd.h"
|
||||||
|
|
||||||
static char *Password = "Jesus";
|
static char *Password = "Jesus";
|
||||||
static BACNET_CHARACTER_STRING My_Password;
|
|
||||||
|
|
||||||
void handler_reinitialize_device(
|
void handler_reinitialize_device(
|
||||||
uint8_t * service_request,
|
uint8_t * service_request,
|
||||||
@@ -107,8 +106,7 @@ void handler_reinitialize_device(
|
|||||||
"ReinitializeDevice: Sending Reject - undefined enumeration\n");
|
"ReinitializeDevice: Sending Reject - undefined enumeration\n");
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
characterstring_init_ansi(&My_Password, Password);
|
if (characterstring_ansi_same(&their_password, Password)) {
|
||||||
if (characterstring_same(&their_password, &My_Password)) {
|
|
||||||
len =
|
len =
|
||||||
encode_simple_ack(&Handler_Transmit_Buffer[pdu_len],
|
encode_simple_ack(&Handler_Transmit_Buffer[pdu_len],
|
||||||
service_data->invoke_id,
|
service_data->invoke_id,
|
||||||
|
|||||||
Reference in New Issue
Block a user