Function silc_log_output_hexdump
SYNOPSIS
void silc_log_output_hexdump(char *file, char *function,
int line, void *data_in,
SilcUInt32 len, char *string);
DESCRIPTION
This is the main function for hexdump output. Please note that you
should rather use the wrapper macro SILC_LOG_HEXDUMP.
If you want to use it anyway, the `file', `function', and `line' are the
corresponding offsets in the source files, `data_in' is the beginning
of the buffer you wish to hexdump, which is `len' bytes long.
`string' must be a dynamic allocated (null-terminated) buffer.
|