Moved srv_running variable to httpd.c.

This commit is contained in:
default 2023-06-05 18:18:50 +02:00
parent 531433aea3
commit 65f5173c2a
3 changed files with 1 additions and 2 deletions

View File

@ -24,6 +24,7 @@
#include <poll.h>
#endif
int srv_running = 0;
/* nodeinfo 2.0 template */
const char *nodeinfo_2_0_template = ""

1
snac.c
View File

@ -25,7 +25,6 @@
d_char *srv_basedir = NULL;
d_char *srv_config = NULL;
d_char *srv_baseurl = NULL;
int srv_running = 0;
int dbglevel = 0;

1
snac.h
View File

@ -15,7 +15,6 @@ extern double disk_layout;
extern d_char *srv_basedir;
extern d_char *srv_config;
extern d_char *srv_baseurl;
extern int srv_running;
extern int dbglevel;