This commit is contained in:
2026-09-20 07:27:29 +01:00
parent dc2cd66b25
commit 8ec44ee0a7
70 changed files with 2657 additions and 128 deletions
@@ -0,0 +1,10 @@
type Params = {
host_id: number;
};
export default function deriveIptablesChainNames({ host_id }: Params) {
return {
forward: `WGUI${host_id}FWD`,
input: `WGUI${host_id}IN`,
};
}