Home
last modified time | relevance | path

Searched refs:fw_ctx (Results 1 – 6 of 6) sorted by relevance

/systemd-251/src/nspawn/
Dnspawn-expose-ports.c85 int expose_port_flush(FirewallContext **fw_ctx, ExposePort* l, int af, union in_addr_union *exposed… in expose_port_flush() argument
99 r = fw_add_local_dnat(fw_ctx, in expose_port_flush()
115 int expose_port_execute(sd_netlink *rtnl, FirewallContext **fw_ctx, ExposePort *l, int af, union in… in expose_port_execute() argument
138 return expose_port_flush(fw_ctx, l, af, exposed); in expose_port_execute()
152 r = fw_add_local_dnat(fw_ctx, in expose_port_execute()
Dnspawn-expose-ports.h26 int expose_port_execute(sd_netlink *rtnl, FirewallContext **fw_ctx, ExposePort *l, int af, union in…
27 int expose_port_flush(FirewallContext **fw_ctx, ExposePort* l, int af, union in_addr_union *exposed…
Dnspawn.c2539 struct FirewallContext *fw_ctx; member
2549 (void) expose_port_execute(rtnl, &args->fw_ctx, arg_expose_ports, AF_INET, &args->address4); in on_address_change()
2550 … (void) expose_port_execute(rtnl, &args->fw_ctx, arg_expose_ports, AF_INET6, &args->address6); in on_address_change()
5182 …(void) expose_port_execute(rtnl, &expose_args->fw_ctx, arg_expose_ports, AF_INET, &expose_args->ad… in run_container()
5183 …(void) expose_port_execute(rtnl, &expose_args->fw_ctx, arg_expose_ports, AF_INET6, &expose_args->a… in run_container()
5309 expose_port_flush(&expose_args->fw_ctx, arg_expose_ports, AF_INET, &expose_args->address4); in run_container()
5310 expose_port_flush(&expose_args->fw_ctx, arg_expose_ports, AF_INET6, &expose_args->address6); in run_container()
5454 _cleanup_(fw_ctx_freep) FirewallContext *fw_ctx = NULL; in run()
5839 r = fw_ctx_new(&fw_ctx); in run()
5844 expose_args.fw_ctx = fw_ctx; in run()
[all …]
/systemd-251/src/network/
Dnetworkd-manager.h101 FirewallContext *fw_ctx; member
Dnetworkd-manager.c596 m->fw_ctx = fw_ctx_free(m->fw_ctx); in manager_free()
Dnetworkd-address.c442 …r = fw_add_masquerade(&address->link->manager->fw_ctx, add, address->family, &masked, address->pre… in address_set_masquerade()