mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 12:37:03 +02:00
added a debug option to the parse_line function
This commit is contained in:
@ -64,6 +64,7 @@ struct _parse_rule config_parse_rules[] =
|
||||
{ "clamd_addr", "string", (void*) string_parser, offsetof(struct __config, clamd_addr), "", MAXVAL-1},
|
||||
{ "clamd_port", "integer", (void*) int_parser, offsetof(struct __config, clamd_port), "0", sizeof(int)},
|
||||
{ "clamd_socket", "string", (void*) string_parser, offsetof(struct __config, clamd_socket), CLAMD_SOCKET, MAXVAL-1},
|
||||
{ "debug", "integer", (void*) int_parser, offsetof(struct __config, debug), "0", sizeof(int)},
|
||||
{ "default_retention_days", "integer", (void*) int_parser, offsetof(struct __config, default_retention_days), "2557", sizeof(int)},
|
||||
{ "hostid", "string", (void*) string_parser, offsetof(struct __config, hostid), HOSTID, MAXVAL-1},
|
||||
{ "iv", "string", (void*) string_parser, offsetof(struct __config, iv), "", MAXVAL-1},
|
||||
|
@ -63,6 +63,8 @@ struct __config {
|
||||
int memcached_to_db_interval;
|
||||
|
||||
int archive_emails_not_having_message_id;
|
||||
|
||||
int debug;
|
||||
};
|
||||
|
||||
|
||||
|
@ -142,6 +142,8 @@ int parse_line(char *buf, struct _state *state, struct session_data *sdata, int
|
||||
char *p, *q, puf[SMALLBUFSIZE];
|
||||
int x, n, len, b64_len, boundary_line=0;
|
||||
|
||||
if(cfg->debug == 1) printf("line: %s", buf);
|
||||
|
||||
state->line_num++;
|
||||
len = strlen(buf);
|
||||
|
||||
|
Reference in New Issue
Block a user