11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
type Params = {
|
|
host_id: number;
|
|
};
|
|
|
|
export default function deriveIptablesChainNames({ host_id }: Params) {
|
|
return {
|
|
forward: `WGUI${host_id}FWD`,
|
|
input: `WGUI${host_id}IN`,
|
|
};
|
|
}
|