ucspi-ssl  0.99e
TLS encryption for IPv6 communication
sig.c
Go to the documentation of this file.
1 /* Public domain. */
2 
3 #include <signal.h>
4 #include "sig.h"
5 
6 int sig_alarm = SIGALRM;
7 int sig_child = SIGCHLD;
8 int sig_cont = SIGCONT;
9 int sig_hangup = SIGHUP;
10 int sig_int = SIGINT;
11 int sig_pipe = SIGPIPE;
12 int sig_term = SIGTERM;
13 
14 void (*sig_defaulthandler)() = SIG_DFL;
15 void (*sig_ignorehandler)() = SIG_IGN;
void(* sig_ignorehandler)()
Definition: sig.c:15
int sig_alarm
Definition: sig.c:6
int sig_child
Definition: sig.c:7
int sig_term
Definition: sig.c:12
int sig_pipe
Definition: sig.c:11
int sig_hangup
Definition: sig.c:9
int sig_cont
Definition: sig.c:8
int sig_int
Definition: sig.c:10
void(* sig_defaulthandler)()
Definition: sig.c:14