f806c5829b
* pre-commit: Update and enable clang-format check There is newer version from clang-format so use that. We do not yet want 18 as that is little bit too new. * Format some thing by hand which clang-format "breaks" Clang-format will format some things little bit off in some cases. Format some things by hand so we get cleaner end result. * Run clang-format with ``` pre-commit run --all-files clang-format ``` We have already in previously checked places where clang-format does not make good format and ignored those (hopefully most of the things). --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
84 lines
1.8 KiB
C
84 lines
1.8 KiB
C
/**
|
|
* @file
|
|
* @brief Header file for a basic BBMD for BVLC IPv6 handler
|
|
* @author Steve Karg
|
|
* @date October 2016
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#ifndef BACNET_BASIC_BVLC6_HANDLER_H
|
|
#define BACNET_BASIC_BVLC6_HANDLER_H
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
/* BACnet Stack defines - first */
|
|
#include "bacnet/bacdef.h"
|
|
/* BACnet Stack API */
|
|
#include "bacnet/datalink/bvlc6.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/* user application function prototypes */
|
|
BACNET_STACK_EXPORT
|
|
int bvlc6_handler(
|
|
BACNET_IP6_ADDRESS *addr,
|
|
BACNET_ADDRESS *src,
|
|
uint8_t *npdu,
|
|
uint16_t npdu_len);
|
|
|
|
BACNET_STACK_EXPORT
|
|
int bvlc6_bbmd_enabled_handler(
|
|
BACNET_IP6_ADDRESS *addr,
|
|
BACNET_ADDRESS *src,
|
|
uint8_t *mtu,
|
|
uint16_t mtu_len);
|
|
|
|
BACNET_STACK_EXPORT
|
|
int bvlc6_bbmd_disabled_handler(
|
|
BACNET_IP6_ADDRESS *addr,
|
|
BACNET_ADDRESS *src,
|
|
uint8_t *mtu,
|
|
uint16_t mtu_len);
|
|
|
|
BACNET_STACK_EXPORT
|
|
int bvlc6_send_pdu(
|
|
const BACNET_ADDRESS *dest,
|
|
const BACNET_NPDU_DATA *npdu_data,
|
|
const uint8_t *pdu,
|
|
unsigned pdu_len);
|
|
|
|
BACNET_STACK_EXPORT
|
|
int bvlc6_register_with_bbmd(
|
|
const BACNET_IP6_ADDRESS *bbmd_addr, uint16_t time_to_live_seconds);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void bvlc6_remote_bbmd_address(BACNET_IP6_ADDRESS *bbmd_addr);
|
|
|
|
BACNET_STACK_EXPORT
|
|
uint16_t bvlc6_remote_bbmd_lifetime(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
uint16_t bvlc6_get_last_result(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
uint8_t bvlc6_get_function_code(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void bvlc6_maintenance_timer(uint16_t seconds);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void bvlc6_debug_enable(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void bvlc6_cleanup(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void bvlc6_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif
|