diff options
| author | luwenpeng <[email protected]> | 2024-09-19 16:23:12 +0800 |
|---|---|---|
| committer | luwenpeng <[email protected]> | 2024-09-20 16:59:19 +0800 |
| commit | 3dafe5393f570888d5918101180634b63d9b7e28 (patch) | |
| tree | 72aca11e6e7de4d410002e5993649667c5699427 | |
| parent | 46307bb271f1ad5f40dbf87daeea470f94b82086 (diff) | |
rename log_private.h to log_internal.h
| -rw-r--r-- | deps/logger/log.c | 2 | ||||
| -rw-r--r-- | deps/logger/log_internal.h (renamed from deps/logger/log_private.h) | 0 | ||||
| -rw-r--r-- | deps/logger/test/gtest_log.cpp | 2 | ||||
| -rw-r--r-- | infra/packet_io/marsio_io.c | 2 | ||||
| -rw-r--r-- | infra/packet_io/packet_io.c | 2 | ||||
| -rw-r--r-- | infra/packet_io/pcap_io.c | 2 | ||||
| -rw-r--r-- | infra/packet_manager/packet_builder.c | 2 | ||||
| -rw-r--r-- | infra/packet_manager/packet_dump.c | 2 | ||||
| -rw-r--r-- | infra/packet_manager/packet_parser.c | 2 | ||||
| -rw-r--r-- | infra/packet_manager/packet_utils.c | 2 | ||||
| -rw-r--r-- | infra/session_manager/session_transition.c | 2 | ||||
| -rw-r--r-- | infra/stellar_core.c | 2 | ||||
| -rw-r--r-- | infra/stellar_stat.c | 2 | ||||
| -rw-r--r-- | infra/tcp_reassembly/tcp_reassembly.c | 2 | ||||
| -rw-r--r-- | infra/utils.h | 2 |
15 files changed, 14 insertions, 14 deletions
diff --git a/deps/logger/log.c b/deps/logger/log.c index fa1da58..1bad961 100644 --- a/deps/logger/log.c +++ b/deps/logger/log.c @@ -10,7 +10,7 @@ #include <pthread.h> #include "toml.h" -#include "log_private.h" +#include "log_internal.h" enum log_output { diff --git a/deps/logger/log_private.h b/deps/logger/log_internal.h index 844d86b..844d86b 100644 --- a/deps/logger/log_private.h +++ b/deps/logger/log_internal.h diff --git a/deps/logger/test/gtest_log.cpp b/deps/logger/test/gtest_log.cpp index 2183109..eaf1922 100644 --- a/deps/logger/test/gtest_log.cpp +++ b/deps/logger/test/gtest_log.cpp @@ -1,6 +1,6 @@ #include <gtest/gtest.h> -#include "log_private.h" +#include "log_internal.h" #if 1 TEST(LOG, STDERR) diff --git a/infra/packet_io/marsio_io.c b/infra/packet_io/marsio_io.c index 409b7b3..dd52681 100644 --- a/infra/packet_io/marsio_io.c +++ b/infra/packet_io/marsio_io.c @@ -6,7 +6,7 @@ #include "marsio.h" #include "marsio_io.h" -#include "log_private.h" +#include "log_internal.h" #include "packet_parser.h" #include "packet_internal.h" diff --git a/infra/packet_io/packet_io.c b/infra/packet_io/packet_io.c index 76d5981..a403623 100644 --- a/infra/packet_io/packet_io.c +++ b/infra/packet_io/packet_io.c @@ -5,7 +5,7 @@ #include "toml.h" #include "pcap_io.h" #include "marsio_io.h" -#include "log_private.h" +#include "log_internal.h" #define PACKET_IO_LOG_ERROR(format, ...) STELLAR_LOG_ERROR(__thread_local_logger, "packet_io", format, ##__VA_ARGS__) #define PACKET_IO_LOG_INFO(format, ...) STELLAR_LOG_INFO(__thread_local_logger, "packet_io", format, ##__VA_ARGS__) diff --git a/infra/packet_io/pcap_io.c b/infra/packet_io/pcap_io.c index cc7372d..7354806 100644 --- a/infra/packet_io/pcap_io.c +++ b/infra/packet_io/pcap_io.c @@ -11,7 +11,7 @@ #include "tuple.h" #include "utils.h" -#include "log_private.h" +#include "log_internal.h" #include "pcap_io.h" #include "packet_dump.h" #include "packet_parser.h" diff --git a/infra/packet_manager/packet_builder.c b/infra/packet_manager/packet_builder.c index bd6b100..63b8b07 100644 --- a/infra/packet_manager/packet_builder.c +++ b/infra/packet_manager/packet_builder.c @@ -1,7 +1,7 @@ #include <time.h> #include "checksum.h" -#include "log_private.h" +#include "log_internal.h" #include "packet_helper.h" #include "packet_parser.h" #include "packet_internal.h" diff --git a/infra/packet_manager/packet_dump.c b/infra/packet_manager/packet_dump.c index e1c3ece..2ac070d 100644 --- a/infra/packet_manager/packet_dump.c +++ b/infra/packet_manager/packet_dump.c @@ -5,7 +5,7 @@ #include <sys/time.h> #include "utils.h" -#include "log_private.h" +#include "log_internal.h" #include "packet_dump.h" #include "packet_parser.h" #include "packet_helper.h" diff --git a/infra/packet_manager/packet_parser.c b/infra/packet_manager/packet_parser.c index d41b93a..e4de9f5 100644 --- a/infra/packet_manager/packet_parser.c +++ b/infra/packet_manager/packet_parser.c @@ -4,7 +4,7 @@ #include <netinet/ip_icmp.h> #include <linux/ppp_defs.h> -#include "log_private.h" +#include "log_internal.h" #include "packet_helper.h" #include "packet_internal.h" #include "packet_parser.h" diff --git a/infra/packet_manager/packet_utils.c b/infra/packet_manager/packet_utils.c index cf546db..a9d4f80 100644 --- a/infra/packet_manager/packet_utils.c +++ b/infra/packet_manager/packet_utils.c @@ -2,7 +2,7 @@ #include "tuple.h" #include "uthash.h" -#include "log_private.h" +#include "log_internal.h" #include "packet_helper.h" #include "packet_internal.h" diff --git a/infra/session_manager/session_transition.c b/infra/session_manager/session_transition.c index 0d773e4..5c06e1c 100644 --- a/infra/session_manager/session_transition.c +++ b/infra/session_manager/session_transition.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <assert.h> -#include "log_private.h" +#include "log_internal.h" #include "session_internal.h" #include "session_transition.h" diff --git a/infra/stellar_core.c b/infra/stellar_core.c index 590931e..c88d5ae 100644 --- a/infra/stellar_core.c +++ b/infra/stellar_core.c @@ -13,7 +13,7 @@ #include "utils.h" #include "packet_io.h" -#include "log_private.h" +#include "log_internal.h" #include "stellar_stat.h" #include "packet_internal.h" #include "session_internal.h" diff --git a/infra/stellar_stat.c b/infra/stellar_stat.c index 408929f..8960e50 100644 --- a/infra/stellar_stat.c +++ b/infra/stellar_stat.c @@ -5,7 +5,7 @@ #include <string.h> #include <assert.h> -#include "log_private.h" +#include "log_internal.h" #include "stellar_stat.h" #include "fieldstat/fieldstat_easy.h" #include "fieldstat/fieldstat_exporter.h" diff --git a/infra/tcp_reassembly/tcp_reassembly.c b/infra/tcp_reassembly/tcp_reassembly.c index 7bcadd1..2591ab2 100644 --- a/infra/tcp_reassembly/tcp_reassembly.c +++ b/infra/tcp_reassembly/tcp_reassembly.c @@ -2,7 +2,7 @@ #include <stdbool.h> #include <sys/queue.h> -#include "log_private.h" +#include "log_internal.h" #include "interval_tree.h" #include "tcp_reassembly.h" #include "stellar/stellar.h" diff --git a/infra/utils.h b/infra/utils.h index 78f5fe8..da9207d 100644 --- a/infra/utils.h +++ b/infra/utils.h @@ -13,7 +13,7 @@ extern "C" #include <string.h> #include "toml.h" -#include "log_private.h" +#include "log_internal.h" #define RX_BURST_MAX 32 #define MAX_THREAD_NUM 256 // limit by snowflake |
