bugfix: export tcp_segment_get_data() symbol

This commit is contained in:
luwenpeng
2024-08-21 15:54:35 +08:00
parent aed2daa1a4
commit 114fc434b3
6 changed files with 10 additions and 13 deletions

View File

@@ -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);
}
}