From 3323184c78f113428250e6926c7956eb00b4f90c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Kosztyu?= Date: Sat, 14 Dec 2024 13:38:53 +0100 Subject: [PATCH] afsocket: making ReloadStoreItem type public MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tamás Kosztyu --- modules/afsocket/afsocket-dest.c | 7 ------- modules/afsocket/afsocket-dest.h | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/afsocket/afsocket-dest.c b/modules/afsocket/afsocket-dest.c index 974179af42..e54a9c534a 100644 --- a/modules/afsocket/afsocket-dest.c +++ b/modules/afsocket/afsocket-dest.c @@ -37,13 +37,6 @@ #include #include -typedef struct _ReloadStoreItem -{ - LogProtoClientFactory *proto_factory; - GSockAddr *dest_addr; - LogWriter *writer; -} ReloadStoreItem; - static ReloadStoreItem * _reload_store_item_new(AFSocketDestDriver *afsocket_dd) { diff --git a/modules/afsocket/afsocket-dest.h b/modules/afsocket/afsocket-dest.h index 83e9997a90..1fea3b1fe7 100644 --- a/modules/afsocket/afsocket-dest.h +++ b/modules/afsocket/afsocket-dest.h @@ -32,6 +32,13 @@ #include +typedef struct _ReloadStoreItem +{ + LogProtoClientFactory *proto_factory; + GSockAddr *dest_addr; + LogWriter *writer; +} ReloadStoreItem; + typedef struct _AFSocketDestDriver AFSocketDestDriver; struct _AFSocketDestDriver