cb243c36a8
* Change MIT license texts to SPDX-License-Identifier SPDX-License-Identifier is much easier to understand and grep than license text so use that instead. * Change GPL exception license texts to SPDX-License-Identifier SPDX-License-Identifier is much easier to understand and grep than license text so use that instead. * Change misc license texts to SPDX-License-Identifier There are some external code in repo which are not licenses as most of the stuff in this repo. We still want every file to have SPDX identifier to easily grep licenses. * Add currently used license files Even though Bacnet-Stack is using SPDX identifiers we still need to give those license files with source. For this reason add all license files to license/ folder. SPDX has also files which would make same thing but this is style which example Linux kernel is using and it is quite clear so I choose that one for now. I choosed not yet bring CC-PDDC as that is not right license for those files. --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
/**************************************************************************
|
|
*
|
|
* Copyright (C) 2005 Steve Karg <skarg@users.sourceforge.net>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*********************************************************************/
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include "bacnet/config.h"
|
|
#include "bacnet/basic/tsm/tsm.h"
|
|
#include "bacnet/bacdef.h"
|
|
#include "bacnet/bacdcode.h"
|
|
#include "bacnet/whois.h"
|
|
#include "bacnet/iam.h"
|
|
#include "bacnet/basic/object/device.h"
|
|
#include "bacnet/basic/services.h"
|
|
#include "bacnet/basic/tsm/tsm.h"
|
|
|
|
bool Send_I_Am_Flag = true;
|
|
|
|
void sendIamUnicast(uint8_t *buffer, BACNET_ADDRESS *src)
|
|
{
|
|
BACNET_ADDRESS dest;
|
|
int pdu_len = 0;
|
|
BACNET_NPDU_DATA npdu_data;
|
|
|
|
/* encode the data */
|
|
int npdu_len = 0;
|
|
int apdu_len = 0;
|
|
BACNET_ADDRESS my_address;
|
|
/* The destination will be the same as the src, so copy it over. */
|
|
memcpy(&dest, src, sizeof(BACNET_ADDRESS));
|
|
/* dest->net = 0; - no, must direct back to src->net to meet BTL tests */
|
|
|
|
datalink_get_my_address(&my_address);
|
|
/* encode the NPDU portion of the packet */
|
|
npdu_encode_npdu_data(&npdu_data, false, MESSAGE_PRIORITY_NORMAL);
|
|
npdu_len = npdu_encode_pdu(&buffer[0], &dest, &my_address, &npdu_data);
|
|
/* encode the APDU portion of the packet */
|
|
apdu_len =
|
|
iam_encode_apdu(&buffer[npdu_len], Device_Object_Instance_Number(),
|
|
MAX_APDU, SEGMENTATION_NONE, Device_Vendor_Identifier());
|
|
/* send data */
|
|
pdu_len = npdu_len + apdu_len;
|
|
int bytes = datalink_send_pdu(&dest, &npdu_data, &buffer[0], pdu_len);
|
|
}
|
|
|
|
void handler_who_is(
|
|
uint8_t *service_request, uint16_t service_len, BACNET_ADDRESS *src)
|
|
{
|
|
int len = 0;
|
|
int32_t low_limit = 0;
|
|
int32_t high_limit = 0;
|
|
int32_t target_device;
|
|
|
|
len = whois_decode_service_request(
|
|
service_request, service_len, &low_limit, &high_limit);
|
|
if (len == 0) {
|
|
sendIamUnicast(&Handler_Transmit_Buffer[0], src);
|
|
} else if (len != -1) {
|
|
/* is my device id within the limits? */
|
|
target_device = Device_Object_Instance_Number();
|
|
if (((target_device >= low_limit) && (target_device <= high_limit)) {
|
|
sendIamUnicast(&Handler_Transmit_Buffer[0], src);
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|