X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=postlicyd%2Fmain-postlicyd.c;h=9baf34ab93d8beef280eb832c5afe709f066c701;hb=785558696ffa16453be0b5b565c46b6426126d1e;hp=9fc03687f9fbf060bb1f7d401fe699e7354fb1f8;hpb=f78d6baee60179e6ce41cc7058a8df5857116010;p=apps%2Fpfixtools.git diff --git a/postlicyd/main-postlicyd.c b/postlicyd/main-postlicyd.c index 9fc0368..9baf34a 100644 --- a/postlicyd/main-postlicyd.c +++ b/postlicyd/main-postlicyd.c @@ -115,6 +115,17 @@ static void policy_answer(server_t *pcy, const char *message) static const filter_t *next_filter(server_t *pcy, const filter_t *filter, const query_t *query, const filter_hook_t *hook, bool *ok) { + if (hook != NULL) { + query_context_t *context = pcy->data; + if (hook->counter >= 0 && hook->counter < MAX_COUNTERS && hook->cost > 0) { + context->context.counters[hook->counter] += hook->cost; + debug("request client=%s, from=<%s>, to=<%s>: added %d to counter %d (now %u)", + query->client_name, + query->sender == NULL ? "undefined" : query->sender, + query->recipient == NULL ? "undefined" : query->recipient, + hook->cost, hook->counter, context->context.counters[hook->counter]); + } + } if (hook == NULL) { warn("request client=%s, from=<%s>, to=<%s>: aborted", query->client_name, @@ -211,6 +222,10 @@ static int policy_run(server_t *pcy, void* vconfig) if (!query_parse(pcy->data, pcy->ibuf.data)) return -1; query->eoq = eoq + strlen("\n\n"); + if (query->instance == NULL || strcmp(context->context.instance, query->instance) != 0) { + filter_context_clean(&context->context); + m_strcat(context->context.instance, 64, query->instance); + } server_none(pcy); return policy_process(pcy, mconfig) ? 0 : -1; }