9e0657424e
* clang-format: Ignore javascript files Ignore javascript files. Clang-format is not very good formatter for javascript files anyway. If we ever need javascript formatter we should use Prettier. * clang-format: Ignore some lines in sources Couple things get formatted really funky if we let clang-format format those. Just ignore those locally. * zephyr/tescase.yaml: Fix yaml syntax pre-commit hook check-yaml did found out that there are two skips. Remove another as this is not right syntax. * Fix repo contains unicode replacement chars When running pre-commit text-unicode-replacement-char it founds that there is couple unicode replacemnt chars. Remove and replace these. * Convert some tabs to spaces manually We will soon auto format tabs to spaces. How ever it could not do couple thing so fix those by hand first. * Make files with shebang executables It is good habit that if file has shebang then it is marked executable. These where found with pre-commit check-shebang-scripts-are-executable checker. --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
91 lines
2.6 KiB
C
91 lines
2.6 KiB
C
/**************************************************************************
|
|
*
|
|
* Copyright (C) 2005 Steve Karg <skarg@users.sourceforge.net>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*********************************************************************/
|
|
|
|
#ifndef BACPORT_H
|
|
#define BACPORT_H
|
|
|
|
/* common unix sockets headers needed */
|
|
#include <sys/types.h> /* basic system data types */
|
|
#include <sys/time.h> /* timeval{} for select() */
|
|
#include <time.h> /* timespec{} for pselect() */
|
|
#include <netinet/in.h> /* sockaddr_in{} and other Internet defns */
|
|
#include <arpa/inet.h> /* inet(3) functions */
|
|
#include <fcntl.h> /* for nonblocking */
|
|
#include <netdb.h>
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h> /* for S_xxx file mode constants */
|
|
#include <sys/uio.h> /* for iovec{} and readv/writev */
|
|
#include <unistd.h>
|
|
#include <sys/wait.h>
|
|
#include <sys/un.h> /* for Unix domain sockets */
|
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
#include <sys/select.h> /* for convenience */
|
|
#endif
|
|
|
|
#ifdef HAVE_POLL_H
|
|
#include <poll.h> /* for convenience */
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
#include <strings.h> /* for convenience */
|
|
#endif
|
|
|
|
/* Three headers are normally needed for socket/file ioctl's:
|
|
* <sys/ioctl.h>, <sys/filio.h>, and <sys/sockio.h>.
|
|
*/
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
#include <sys/ioctl.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_FILIO_H
|
|
#include <sys/filio.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKIO_H
|
|
#include <sys/sockio.h>
|
|
#endif
|
|
|
|
#include <pthread.h>
|
|
#include <semaphore.h>
|
|
|
|
#define ENUMS
|
|
#include <sys/socket.h>
|
|
#include <net/route.h>
|
|
#include <net/if.h>
|
|
#include <net/if_var.h>
|
|
#include <net/if_arp.h>
|
|
#include <net/if_dl.h>
|
|
#include <ifaddrs.h>
|
|
#include <net/ethernet.h> /* the L2 protocols */
|
|
#include <netinet/in.h>
|
|
#include <netinet/in_var.h>
|
|
#include <arpa/inet.h>
|
|
#include <sys/un.h>
|
|
#include <sys/ioctl.h>
|
|
#include <netdb.h>
|
|
#include "bacnet/basic/sys/bacnet_stack_exports.h"
|
|
|
|
/** @file bsd/net.h Includes BSD network headers. */
|
|
|
|
/* Local helper functions for this port */
|
|
BACNET_STACK_EXPORT
|
|
extern int bip_get_local_netmask(
|
|
struct in_addr *netmask);
|
|
|
|
#define BACNET_OBJECT_TABLE(table_name, _type, _init, _count, \
|
|
_index_to_instance, _valid_instance, _object_name, \
|
|
_read_property, _write_property, _RPM_list, \
|
|
_RR_info, _iterator, _value_list, _COV, \
|
|
_COV_clear, _intrinsic_reporting) \
|
|
static_assert(false, "Unsupported BACNET_OBJECT_TABLE for this platform")
|
|
|
|
#endif
|