1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/include/villas/node/config.h.in

72 lines
2.1 KiB
C
Raw Permalink Normal View History

/** Static server configuration
*
* This file contains some compiled-in settings.
* This settings are not part of the configuration file.
*
* @file
2015-06-02 21:53:04 +02:00
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
2020-01-20 17:17:00 +01:00
* @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
2017-04-27 12:56:43 +02:00
* @license GNU General Public License (version 3)
*
* VILLASnode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
2017-04-27 12:56:43 +02:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
2017-04-27 12:56:43 +02:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-06-02 21:53:04 +02:00
*********************************************************************************/
2017-02-16 09:04:12 -03:00
#pragma once
#include <villas/config.h>
2016-06-26 15:34:40 +02:00
/** Default number of values in a sample */
#define DEFAULT_SAMPLE_LENGTH 64u
2019-04-07 15:13:40 +02:00
#define DEFAULT_QUEUE_LENGTH 1024u
#define MAX_SAMPLE_LENGTH 256u
/** Number of hugepages which are requested from the the kernel.
* @see https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt */
2017-04-24 19:56:01 +02:00
#define DEFAULT_NR_HUGEPAGES 100
/** Socket priority */
2015-05-06 11:43:05 +02:00
#define SOCKET_PRIO 7
/* Protocol numbers */
2016-06-08 23:21:42 +02:00
#define IPPROTO_VILLAS 137
#define ETH_P_VILLAS 0xBABE
2015-05-06 11:43:05 +02:00
/* Required kernel version */
2015-09-17 00:55:20 +02:00
#define KERNEL_VERSION_MAJ 3
2016-06-14 01:19:17 +02:00
#define KERNEL_VERSION_MIN 6
2018-06-21 09:37:01 +02:00
/* Available Features */
#cmakedefine WITH_WEB
#cmakedefine WITH_NODE_WEBSOCKET
2018-06-21 09:37:01 +02:00
#cmakedefine WITH_API
#cmakedefine WITH_HOOKS
2019-04-05 11:01:49 +02:00
#cmakedefine WITH_CONFIG
#cmakedefine WITH_GRAPHVIZ
2020-06-14 17:49:47 +02:00
#cmakedefine WITH_FPGA
2018-06-21 09:37:01 +02:00
/* OS Headers */
#cmakedefine HAS_EVENTFD
2018-06-25 06:00:34 +02:00
#cmakedefine HAS_SEMAPHORE
/* Available Libraries */
2018-06-25 06:00:34 +02:00
#cmakedefine PROTOBUF_FOUND
#cmakedefine LIBNL3_ROUTE_FOUND
#cmakedefine IBVERBS_FOUND
2020-12-07 21:30:22 +01:00
#cmakedefine LUAJIT_FOUND
/* Library features */
#cmakedefine LWS_DEFLATE_FOUND