diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-05-27 20:01:45 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-05-27 20:01:45 +0200 |
commit | d2e92ee748f3b3e826ffcbf665adc45637ad9045 (patch) | |
tree | 994a7b54dc9cbbad364036f25412ba4c5dc519fc /src/utils.h | |
parent | ed456a32ffe6fea0cb52b5184a00a14cb0059f4a (diff) |
re-enabled and improved logging of packet headers and payload
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/utils.h b/src/utils.h index acb5f71..b019454 100644 --- a/src/utils.h +++ b/src/utils.h @@ -46,6 +46,7 @@ #ifndef UTILS_H #define UTILS_H 1 +#include <stdlib.h> #include <stdint.h> #include "pconfig.h" @@ -58,9 +59,7 @@ double time_as_double(void); int host_to_addr(const char * hostname, uint32_t * result); -#if 0 -void print_hexstr(unsigned char *buf, size_t siz); -#endif +void log_sendrecv_hexstr(const char * prefix, void *buf, size_t siz); int pt_random(void); |