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
2014-06-05 09:35:32 +00:00

28 lines
738 B
C

/** Static server configuration
*
* This file contains some defines which are not part of the configuration file.
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
* @copyright 2014, Institute for Automation of Complex Power Systems, EONERC
* @file config.h
*/
#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_ */