]> granicus.if.org Git - fcron/blob - fcrondyn_svr.h
added runatresume / @resume
[fcron] / fcrondyn_svr.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 __FCRONDYN_SVR_H__
28 #define __FCRONDYN_SVR_H__
29
30 #include "dyncom.h"
31 #include "select.h"
32 #ifdef HAVE_SYS_RESOURCE_H
33 /* needed by setpriority() */
34 #include <sys/resource.h>
35 #endif
36
37 /* functions prototypes */
38 extern void fcrondyn_socket_init(select_instance * si);
39 extern void fcrondyn_socket_check(select_instance * si);
40 extern void fcrondyn_socket_close(select_instance * si);
41
42 /* struct used by fcron : */
43 typedef struct fcrondyn_cl {
44     struct fcrondyn_cl *fcl_next;
45     int fcl_sock_fd;
46     char *fcl_user;
47     time_t fcl_idle_since;
48     int fcl_cmd_len;
49     long int *fcl_cmd;
50 } fcrondyn_cl;
51
52
53 #endif                          /* __FCRONDYN_SVR_H__ */