added a debug option to the parse_line function

This commit is contained in:
SJ
2012-07-23 16:51:36 +02:00
parent eb44c74036
commit 97ca851780
5 changed files with 10 additions and 3 deletions

View File

@ -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},

View File

@ -63,6 +63,8 @@ struct __config {
int memcached_to_db_interval;
int archive_emails_not_having_message_id;
int debug;
};

View File

@ -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);