mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
0c6493aa6d
svn path=/trunk/icecast/; revision=5175
53 lines
915 B
C
53 lines
915 B
C
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <signal.h>
|
|
|
|
#include "thread/thread.h"
|
|
#include "avl/avl.h"
|
|
#include "httpp/httpp.h"
|
|
|
|
#include "global.h"
|
|
#include "connection.h"
|
|
#include "refbuf.h"
|
|
#include "client.h"
|
|
#include "logging.h"
|
|
#include "event.h"
|
|
|
|
#define CATMODULE "sighandler"
|
|
|
|
#ifndef _WIN32
|
|
void _sig_hup(int signo);
|
|
void _sig_die(int signo);
|
|
#endif
|
|
|
|
void sighandler_initialize(void)
|
|
{
|
|
#ifndef _WIN32
|
|
signal(SIGHUP, _sig_hup);
|
|
signal(SIGINT, _sig_die);
|
|
signal(SIGTERM, _sig_die);
|
|
signal(SIGPIPE, SIG_IGN);
|
|
#endif
|
|
}
|
|
|
|
#ifndef _WIN32
|
|
|
|
void _sig_hup(int signo)
|
|
{
|
|
global . schedule_config_reread = 1;
|
|
/* some OSes require us to reattach the signal handler */
|
|
signal(SIGHUP, _sig_hup);
|
|
}
|
|
|
|
void _sig_die(int signo)
|
|
{
|
|
INFO1("Caught signal %d, shutting down...", signo);
|
|
|
|
/* inform the server to start shutting down */
|
|
global.running = ICE_HALTING;
|
|
}
|
|
|
|
#endif
|