2014-06-05 09:35:32 +00:00
|
|
|
/** Static server configuration
|
2014-06-25 01:53:37 +00:00
|
|
|
*
|
2014-07-14 11:49:44 +00:00
|
|
|
* This file contains some compiled-in settings.
|
|
|
|
* This settings are not part of the configuration file.
|
2014-06-05 09:34:29 +00:00
|
|
|
*
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
|
|
* @copyright 2014, Institute for Automation of Complex Power Systems, EONERC
|
2014-06-28 06:40:52 +00:00
|
|
|
* @file
|
2014-06-05 09:34:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_H_
|
|
|
|
|
2014-06-05 09:35:41 +00:00
|
|
|
/** The version number of the s2ss server */
|
2014-09-07 16:29:01 +00:00
|
|
|
#define VERSION "v0.4" __GIT_REV__
|
2014-06-05 09:34:29 +00:00
|
|
|
|
2014-06-05 09:35:41 +00:00
|
|
|
/** Maximum number of double values in a struct msg */
|
2014-09-10 11:38:02 +00:00
|
|
|
#define MAX_VALUES 64
|
2014-06-05 09:34:52 +00:00
|
|
|
|
2014-06-05 09:35:41 +00:00
|
|
|
/** Socket priority */
|
2014-06-05 09:34:52 +00:00
|
|
|
#define SOCKET_PRIO 7
|
|
|
|
|
2014-09-09 09:03:11 +00:00
|
|
|
/* Some parameters for histogram statistics */
|
2014-09-09 09:23:23 +00:00
|
|
|
#define HIST_HEIGHT 50
|
|
|
|
#define HIST_SEQ 17
|
2014-09-09 09:03:11 +00:00
|
|
|
|
2014-06-05 09:34:29 +00:00
|
|
|
#endif /* _CONFIG_H_ */
|