aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-11-17 08:47:37 +0000
committerJan Hutter <jhutter@hsr.ch>2005-11-17 08:47:37 +0000
commitc4e75f5f1a2c5dcc001456f818615889e2f5e3df (patch)
tree1ca834cdd8fdf4c6f203f89e730394071e9f65b1
parent6bf409865d46b463c161ca66c171b70a52ae3869 (diff)
downloadstrongswan-c4e75f5f1a2c5dcc001456f818615889e2f5e3df.tar.bz2
strongswan-c4e75f5f1a2c5dcc001456f818615889e2f5e3df.tar.xz
- added logging of chunk_t's
-rw-r--r--Source/charon/parser.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/charon/parser.c b/Source/charon/parser.c
index c30092302..316530e33 100644
--- a/Source/charon/parser.c
+++ b/Source/charon/parser.c
@@ -509,6 +509,7 @@ static status_t parse_chunk(private_parser_t *this, int rule_number, chunk_t *ou
memcpy(output_pos->ptr, this->byte_pos, length);
}
this->byte_pos += length;
+ this->logger->log_bytes(this->logger, RAW, " =>", (void*)output_pos->ptr, length);
return SUCCESS;
}