bugfix: export tcp_segment_get_data() symbol
This commit is contained in:
@@ -10,25 +10,25 @@ static void signal_handler(int signo)
|
||||
{
|
||||
if (signo == SIGINT)
|
||||
{
|
||||
printf("SIGINT received, notify threads to exit");
|
||||
printf("SIGINT received, notify threads to exit\n");
|
||||
stellar_loopbreak(st);
|
||||
}
|
||||
|
||||
if (signo == SIGQUIT)
|
||||
{
|
||||
printf("SIGQUIT received, notify threads to exit");
|
||||
printf("SIGQUIT received, notify threads to exit\n");
|
||||
stellar_loopbreak(st);
|
||||
}
|
||||
|
||||
if (signo == SIGTERM)
|
||||
{
|
||||
printf("SIGTERM received, notify threads to exit");
|
||||
printf("SIGTERM received, notify threads to exit\n");
|
||||
stellar_loopbreak(st);
|
||||
}
|
||||
|
||||
if (signo == SIGHUP)
|
||||
{
|
||||
printf("SIGHUP received, reload log level !!!");
|
||||
printf("SIGHUP received, reload log level\n");
|
||||
stellar_reload_log_level(st);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user