Browse Source

1

nodeinfo-routing-update
Evgeny 3 weeks ago
parent
commit
93f785b36a
  1. 2
      src/packet_dump.c
  2. 5
      src/utun.c

2
src/packet_dump.c

@ -2,8 +2,6 @@
#include "../lib/debug_config.h"
#include <stdio.h>
#include <string.h>
#include <netinet/in.h>
#include <arpa/inet.h>
static const char* tcp_flags_to_str(uint8_t flags) {
static char buf[32];

5
src/utun.c

@ -249,9 +249,12 @@ struct UASYNC* main_ua = NULL;
static void signal_handler(int sig) {
if (sig == SIGINT || sig == SIGTERM) {
g_shutdown = 1;
} else if (sig == SIGHUP) {
}
#ifndef _WIN32
else if (sig == SIGHUP) {
g_reload = 1;
}
#endif
if (main_ua) {
uasync_wakeup(main_ua);
}

Loading…
Cancel
Save