diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-17 08:47:37 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-17 08:47:37 +0000 |
commit | c4e75f5f1a2c5dcc001456f818615889e2f5e3df (patch) | |
tree | 1ca834cdd8fdf4c6f203f89e730394071e9f65b1 | |
parent | 6bf409865d46b463c161ca66c171b70a52ae3869 (diff) | |
download | strongswan-c4e75f5f1a2c5dcc001456f818615889e2f5e3df.tar.bz2 strongswan-c4e75f5f1a2c5dcc001456f818615889e2f5e3df.tar.xz |
- added logging of chunk_t's
-rw-r--r-- | Source/charon/parser.c | 1 |
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; } |