diff options
author | Adam <Adam@anope.org> | 2011-08-10 15:50:45 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-10 15:50:45 -0400 |
commit | 3755bf5bcd3d527739316c13100cf579126f1027 (patch) | |
tree | b99cf7655d585f407a648b1673c865a0c5ddfee9 /src/init.cpp | |
parent | 25d422d32bd72a812b52ad27180b033c75b1ddc6 (diff) |
Ignore SIGPIPE
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index d02be3eb6..ea0b6c503 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -217,6 +217,14 @@ class SignalExit : public Signal } }; +class SignalNothing : public Signal +{ + public: + SignalNothing(int sig) : Signal(sig) { } + + void OnSignal() { } +}; + void Init(int ac, char **av) { int started_from_term = isatty(0) && isatty(1) && isatty(2); @@ -385,6 +393,7 @@ void Init(int ac, char **av) static SignalReload sig_hup(SIGHUP); static SignalExit sig_term(SIGTERM), sig_int(SIGINT); + static SignalNothing sig_pipe(SIGPIPE); /* Initialize multi-language support */ Log(LOG_DEBUG) << "Loading Languages..."; |