git: 6c479edc6164 - main - pf: Fix indentation in struct pf_ksrc_node
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 15 Aug 2024 08:31:30 UTC
The branch main has been updated by kp:
URL: https://cgit.FreeBSD.org/src/commit/?id=6c479edc6164fec696c534962bdda04fe21437e3
commit 6c479edc6164fec696c534962bdda04fe21437e3
Author: Kajetan Staszkiewicz <vegeta@tuxpowered.net>
AuthorDate: 2024-08-15 07:35:41 +0000
Commit: Kristof Provost <kp@FreeBSD.org>
CommitDate: 2024-08-15 07:36:18 +0000
pf: Fix indentation in struct pf_ksrc_node
This is a purely cosmetic change to simplify future diffs.
Reviewed by: kp
Differential Revision: https://reviews.freebsd.org/D46298
---
sys/net/pfvar.h | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h
index eecd61f960c8..eeded1e900a6 100644
--- a/sys/net/pfvar.h
+++ b/sys/net/pfvar.h
@@ -884,21 +884,21 @@ SLIST_HEAD(pf_krule_slist, pf_krule_item);
struct pf_ksrc_node {
LIST_ENTRY(pf_ksrc_node) entry;
- struct pf_addr addr;
- struct pf_addr raddr;
+ struct pf_addr addr;
+ struct pf_addr raddr;
struct pf_krule_slist match_rules;
- union pf_krule_ptr rule;
- struct pfi_kkif *rkif;
- counter_u64_t bytes[2];
- counter_u64_t packets[2];
- u_int32_t states;
- u_int32_t conn;
- struct pf_threshold conn_rate;
- u_int32_t creation;
- u_int32_t expire;
- sa_family_t af;
- u_int8_t ruletype;
- struct mtx *lock;
+ union pf_krule_ptr rule;
+ struct pfi_kkif *rkif;
+ counter_u64_t bytes[2];
+ counter_u64_t packets[2];
+ u_int32_t states;
+ u_int32_t conn;
+ struct pf_threshold conn_rate;
+ u_int32_t creation;
+ u_int32_t expire;
+ sa_family_t af;
+ u_int8_t ruletype;
+ struct mtx *lock;
};
#endif