From 66013584faeaa42e7148f0ef6b3aae0e470ef9b3 Mon Sep 17 00:00:00 2001 From: skarg Date: Sun, 1 Jan 2017 05:14:33 +0000 Subject: [PATCH] Added buffer size to COV handler function parameters. --- bacnet-stack/include/client.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bacnet-stack/include/client.h b/bacnet-stack/include/client.h index 73a30cbb..3e9f95be 100644 --- a/bacnet-stack/include/client.h +++ b/bacnet-stack/include/client.h @@ -108,9 +108,11 @@ extern "C" { int Send_UCOV_Notify( uint8_t * buffer, + unsigned buffer_len, BACNET_COV_DATA * cov_data); int ucov_notify_encode_pdu( uint8_t * buffer, + unsigned buffer_len, BACNET_ADDRESS * dest, BACNET_NPDU_DATA * npdu_data, BACNET_COV_DATA * cov_data);