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

26 lines
624 B
C

/**
* Configuration
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
* @copyright 2014, Institute for Automation of Complex Power Systems, EONERC
*/
#ifndef _CONFIG_H_
#define _CONFIG_H_
/// The version number of the s2ss server
#define VERSION __GIT_TAG__ "-" __GIT_REV__
/// Maximum number of double values in a struct msg
#define MAX_VALUES 6
/// Maximum number of registrable hook functions per path
#define MAX_HOOKS 5
/// Size of the stack which gets prefaulted during initialization
#define MAX_SAFE_STACK (16*1024) /* 16 KiB */
/// Socket priority
#define SOCKET_PRIO 7
#endif /* _CONFIG_H_ */