From bea62356292a5f9c64e990cfd925da7877ecd3c3 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Wed, 16 Apr 2025 13:56:12 +0200 Subject: [PATCH] MEDIUM: sink: add a new dpapi ring buffer Add a 1MB ring buffer called "dpapi" for communication with the dataplane API. It would first be used to transmit ACME informations to the dataplane API but could be used for more. --- src/sink.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sink.c b/src/sink.c index 5f65222d7..ed7195981 100644 --- a/src/sink.c +++ b/src/sink.c @@ -1411,6 +1411,7 @@ static void sink_init() sink_new_fd("stdout", "standard output (fd#1)", LOG_FORMAT_RAW, 1); sink_new_fd("stderr", "standard output (fd#2)", LOG_FORMAT_RAW, 2); sink_new_buf("buf0", "in-memory ring buffer", LOG_FORMAT_TIMED, 1048576); + sink_new_buf("dpapi", "DPAPI ring buffer", LOG_FORMAT_TIMED, 1048576); } static int sink_postcheck() -- 2.47.2