it seems to be working now

This commit is contained in:
Robin Appelman 2025-10-31 01:46:47 +01:00
commit b4cf0acb44
11 changed files with 398 additions and 64 deletions

View file

@ -1,5 +1,6 @@
mod namespace;
mod proxy;
pub mod link;
use crate::config::{Config, ForwardConfig, NamespaceConfig, NamespaceName};
use crate::daemon::namespace::{NamespaceError, NetNs};
@ -163,7 +164,7 @@ impl ActiveNamespace {
for new in &config.forward {
if !self.has_forward(new) {
self.proxies.push(ActiveProxy::new(new)?);
self.proxies.push(ActiveProxy::new(new, &config.name)?);
}
}