Simple concurrency lock to prevent multiple citservers running at the same time
[citadel.git] / citadel / citserver.h
1 /*
2  * Copyright (c) 1987-2015 by the citadel.org team
3  *
4  * This program is open source software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 3.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  */
12
13 #include "serv_extensions.h"
14 #include "context.h"
15 #include "ctdl_module.h"
16
17 /* Simple linked list structures ... used in a bunch of different places. */
18 typedef struct RoomProcList RoomProcList;
19 struct RoomProcList {
20         struct RoomProcList *next;
21         char name[ROOMNAMELEN];
22         char lcname[ROOMNAMELEN];
23         long namelen;
24         long lastsent;
25         long key;
26         long QRNum;
27 };
28 struct UserProcList {
29         struct UserProcList *next;
30         char user[64];
31 };
32
33 #define CTDLUSERIP      (IsEmptyStr(CC->cs_addr) ?  CC->cs_clientinfo: CC->cs_addr)
34
35 void cit_backtrace(void);
36 void cit_oneline_backtrace(void);
37 void cit_panic_backtrace(int SigNum);
38 void master_startup (void);
39 int master_cleanup (int exitcode);
40 void set_wtmpsupp (char *newtext);
41 void set_wtmpsupp_to_current_room(void);
42 void do_command_loop(void);
43 void do_async_loop(void);
44 void begin_session(struct CitContext *con);
45 void citproto_begin_session(void);
46 void citproto_begin_admin_session(void);
47
48 void help_subst (char *strbuf, char *source, char *dest);
49
50 extern int panic_fd;
51 char CtdlCheckExpress(void);
52 int CtdlIsPublicClient(void);
53 extern time_t server_startup_time;
54 extern int openid_level_supported;