From 5a66d1d72174622266490db9e693783bb97268c0 Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Fri, 14 Oct 2016 16:14:20 +1000 Subject: [PATCH] * fix doxygen warnings --- src/cmsg.h | 2 +- src/jail.h | 1 + src/matches.h | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cmsg.h b/src/cmsg.h index d212d7f..8afcec5 100644 --- a/src/cmsg.h +++ b/src/cmsg.h @@ -22,7 +22,7 @@ typedef struct f2b_cmsg_t { uint8_t flags; /**< CMSG_FLAG_* */ uint16_t size; /**< payload length */ /* 8 bytes */ - char pass[8]; + char pass[8]; /**< auth data */ /* 16 bytes */ /* end of header */ char data[DATA_LEN_MAX]; /**< set of "\n"-terminated strings */ diff --git a/src/jail.h b/src/jail.h index 326df2a..7869337 100644 --- a/src/jail.h +++ b/src/jail.h @@ -14,6 +14,7 @@ #include "filter.h" #include "backend.h" +/** jail metadata struct */ typedef struct f2b_jail_t { struct f2b_jail_t *next; /**< pointer to next jail */ bool enabled; /**< option: is jail enabled */ diff --git a/src/matches.h b/src/matches.h index 22bce46..29e327d 100644 --- a/src/matches.h +++ b/src/matches.h @@ -7,6 +7,7 @@ #ifndef F2B_MATCHES_H_ #define F2B_MATCHES_H_ +/** matches container */ typedef struct { size_t hits; /**< how many times this ip matched by filter */ size_t max; /**< max matches that this in struct can contain */