aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gtphub_sock.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2015-12-07 13:36:47 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2015-12-08 12:21:15 +0100
commit36948bf7c71d89746314e93ffe8f3eb2c2fbc5ea (patch)
tree716bc8ef3400b5286d4860fc69ceb686b9f9a819 /openbsc/src/gprs/gtphub_sock.c
parent4d2b3ff6a235ff42ba839ca782f187a321c3e6a4 (diff)
gtphub: log: limit length of hex dumps.
The debug log prints the received/sent bytes in hex. When this data surpasses the buffer size available for the log string (4096), the log is truncated and lacks a newline character. Limit the amount of dumped bytes to 1000. Sponsored-by: On-Waves ehi
Diffstat (limited to 'openbsc/src/gprs/gtphub_sock.c')
-rw-r--r--openbsc/src/gprs/gtphub_sock.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/openbsc/src/gprs/gtphub_sock.c b/openbsc/src/gprs/gtphub_sock.c
index 699672e46..60bebaaeb 100644
--- a/openbsc/src/gprs/gtphub_sock.c
+++ b/openbsc/src/gprs/gtphub_sock.c
@@ -50,8 +50,10 @@ int gtphub_write(const struct osmo_fd *to,
LOG(LOGL_ERROR, "sent(%d) != data_len(%d)\n",
(int)sent, (int)buf_len);
else
- LOG(LOGL_DEBUG, "Sent %d: %s\n",
- (int)sent, osmo_hexdump(buf, sent));
+ LOG(LOGL_DEBUG, "Sent %d: %s%s\n",
+ (int)sent,
+ osmo_hexdump(buf, sent > 1000? 1000 : sent),
+ sent > 1000 ? "..." : "");
return 0;
}