summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/log.h b/src/log.h
index 0f05c08..6eef9e7 100644
--- a/src/log.h
+++ b/src/log.h
@@ -32,7 +32,7 @@
#ifndef UANYTUN_log_h_INCLUDED
#define UANYTUN_log_h_INCLUDED
-#define MSG_LENGTH_MAX 150
+#define MSG_LENGTH_MAX 1024
enum log_prio_enum { ERROR = 1, WARNING = 2, NOTICE = 3,
INFO = 4, DEBUG = 5 };
@@ -85,6 +85,6 @@ void log_close();
void update_max_prio();
int log_add_target(const char* conf);
void log_printf(log_prio_t prio, const char* fmt, ...);
-void log_print_hex_dump(log_prio_t prio, const u_int8_t* buf, u_int32_t len);
+void log_print_hex_dump(log_prio_t prio, const uint8_t* buf, uint32_t len);
#endif