diff options
author | metamuffin <metamuffin@disroot.org> | 2025-03-04 23:27:30 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-03-04 23:27:30 +0100 |
commit | 10dba4e7c79e622249cf4539cff3347619e15059 (patch) | |
tree | 18851e4100b6b906d99f06b102ad0cd8cde6815f /src/modules/mod.rs | |
parent | 322e6b32aa313b99861bd4f03ebed68bcb2fd031 (diff) | |
download | gnix-10dba4e7c79e622249cf4539cff3347619e15059.tar gnix-10dba4e7c79e622249cf4539cff3347619e15059.tar.bz2 gnix-10dba4e7c79e622249cf4539cff3347619e15059.tar.zst |
set correct port on forwarded headers
Diffstat (limited to 'src/modules/mod.rs')
-rw-r--r-- | src/modules/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/mod.rs b/src/modules/mod.rs index d3e0dd3..61f4b74 100644 --- a/src/modules/mod.rs +++ b/src/modules/mod.rs @@ -56,6 +56,7 @@ pub struct NodeContext { pub state: Arc<State>, pub addr: SocketAddr, pub secure: bool, + pub listen_addr: SocketAddr, } pub trait NodeKind: Send + Sync + 'static { |