Commit fde3182b authored by George Fleury's avatar George Fleury

Avoid loop break when daemonize option is on, now daemonize runs forever until sigkill or sigterm

parent 2409907c
......@@ -104,8 +104,12 @@ extern int usfd;
extern int sfd;
extern int use_ids;
extern int daemonize;
extern struct tgl_state *TLS;
void event_incoming (struct bufferevent *bev, short what, void *_arg);
int is_same_word (const char *s, size_t l, const char *word) {
return s && word && strlen (word) == l && !memcmp (s, word, l);
}
......@@ -909,10 +913,16 @@ void do_status_offline (int arg_num, struct arg args[], struct in_ev *ev) {
}
void do_quit (int arg_num, struct arg args[], struct in_ev *ev) {
if (daemonize)
event_incoming (ev->bev, BEV_EVENT_EOF, ev);
//bufferevent_free(ev->bev);
do_halt (0);
}
void do_safe_quit (int arg_num, struct arg args[], struct in_ev *ev) {
if (daemonize)
event_incoming (ev->bev, BEV_EVENT_EOF, ev);
//bufferevent_free(ev->bev);
safe_quit = 1;
}
......
......@@ -192,6 +192,7 @@ void net_loop (int flags, int (*is_end)(void)) {
if (safe_quit && !TLS->active_queries) {
printf ("All done. Exit\n");
do_halt (0);
safe_quit = 0;
}
if (sigterm_cnt > 0) {
do_halt (0);
......@@ -682,7 +683,7 @@ static void read_incoming (struct bufferevent *bev, void *_arg) {
}
}
static void event_incoming (struct bufferevent *bev, short what, void *_arg) {
void event_incoming (struct bufferevent *bev, short what, void *_arg) {
struct in_ev *ev = _arg;
if (what & (BEV_EVENT_EOF | BEV_EVENT_ERROR)) {
vlogprintf (E_WARNING, "Closing incoming connection\n");
......@@ -701,7 +702,7 @@ static void accept_incoming (evutil_socket_t efd, short what, void *arg) {
int fd = accept (efd, (struct sockaddr *)&cli_addr, &clilen);
assert (fd >= 0);
struct bufferevent *bev = bufferevent_socket_new (TLS->ev_base, fd, 0);
struct bufferevent *bev = bufferevent_socket_new (TLS->ev_base, fd, BEV_OPT_CLOSE_ON_FREE);
struct in_ev *e = malloc (sizeof (*e));
e->bev = bev;
e->refcnt = 1;
......
......@@ -491,7 +491,7 @@ int disable_auto_accept;
int wait_dialog_list;
char *logname;
int daemonize;
int daemonize=0;
void reopen_logs (void) {
......@@ -741,11 +741,14 @@ void sig_term_handler (int signum __attribute__ ((unused))) {
}
void do_halt (int error) {
if (daemonize)
return;
if (!readline_disabled) {
rl_free_line_state ();
rl_cleanup_after_signal ();
}
if (write (1, "halt\n", 5) < 0) {
// Sad thing
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment