Subversion Repositories heating

Rev

Rev 5 | Rev 54 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 17
Line 26... Line 26...
26
#include "helper.h"
26
#include "helper.h"
27
 
27
 
28
typedef struct CONFIGURE
28
typedef struct CONFIGURE
29
{
29
{
30
	// Part 1: Daemon
30
	// Part 1: Daemon
31
	int port;
31
	int port;					// Port number the daemon will listen on
32
	char pidfile[128];
32
	char pidfile[128];			// The where the daemon writes it current PID
33
	char user[32];
33
	char user[32];				// The user the daemon will use to run
34
	char group[32];
34
	char group[32];				// The group the daemon will use to run
-
 
35
	int html_port;				// The port number a HTML server should listen on
35
	// Part 2: heating
36
	// Part 2: heating
36
	char heatconf[128];			// Path to config file of heating
37
	char heatconf[128];			// Path to config file of heating
37
	char home[128];				// Path to directory with working database
38
	char home[128];				// Path to directory with working database
38
	char serial[128];			// Path to serial device with digital thermometer
39
	char serial[128];			// Path to serial device with digital thermometer
39
	// Part 3: Development
40
	// Part 3: Development