From: Felix Fietkau Date: Wed, 11 Jun 2025 08:29:10 +0000 (+0200) Subject: system-dummy: add missing vrf functions X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=3a7878065829683373d2ffa456f8afb361d06fb1;p=project%2Fnetifd.git system-dummy: add missing vrf functions Signed-off-by: Felix Fietkau --- diff --git a/system-dummy.c b/system-dummy.c index c698361..59411c4 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -389,3 +389,31 @@ int system_vlandev_del(struct device *vlandev) { return 0; } + +int system_vrf_addvrf(struct device *vrf, unsigned int table) +{ + return 0; +} + +int system_vrf_delvrf(struct device *vrf) +{ + return 0; +} + +int system_vrf_addif(struct device *vrf, struct device *dev) +{ + return 0; +} + +int system_vrf_delif(struct device *vrf, struct device *dev) +{ + return 0; +} + +void system_tcp_l3mdev(bool enable) +{ +} + +void system_udp_l3mdev(bool enable) +{ +}