]> granicus.if.org Git - fcron/blob - socket.h
updated change logs
[fcron] / socket.h
1 /*
2  * FCRON - periodic command scheduler 
3  *
4  *  Copyright 2000-2014 Thibault Godouet <fcron@free.fr>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  * 
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  * 
20  *  The GNU General Public License can also be found in the file
21  *  `LICENSE' that comes with the fcron source distribution.
22  */
23
24
25 /* This file describe the communication protocol between fcron and fcrondyn */
26
27 #ifndef __SOCKET_H__
28 #define __SOCKET_H__
29
30 #include "dyncom.h"
31 #ifdef HAVE_SYS_RESOURCE_H
32 /* needed by setpriority() */
33 #include <sys/resource.h>
34 #endif
35
36 /* public var defined by socket.c */
37 extern fd_set read_set;
38 extern int set_max_fd;
39
40 /* functions prototypes */
41 extern void init_socket(void);
42 extern void check_socket(int num);
43 extern void close_socket(void);
44
45
46
47 /* struct used by fcron : */
48 typedef struct fcrondyn_cl {
49     struct fcrondyn_cl *fcl_next;
50     int fcl_sock_fd;
51     char *fcl_user;
52     time_t fcl_idle_since;
53     int fcl_cmd_len;
54     long int *fcl_cmd;
55 } fcrondyn_cl;
56
57
58 #endif                          /* __SOCKET_H__ */