X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system.h;h=691667cad128deaf08bca2409eda187cce4319a9;hp=5e275cad6000595169c1acaef85e934cb8348868;hb=0f0fa4f1c8cb4f793c3dddd1edd1420483e9e325;hpb=b0ef5945af9d68a435868546b4bf30020a6e6ab8 diff --git a/system.h b/system.h index 5e275ca..691667c 100644 --- a/system.h +++ b/system.h @@ -16,8 +16,10 @@ #include #include +#include #include "device.h" #include "interface-ip.h" +#include "iprule.h" enum tunnel_param { TUNNEL_ATTR_TYPE, @@ -42,6 +44,7 @@ struct bridge_config { enum bridge_opt flags; bool stp; bool igmp_snoop; + unsigned short priority; int forward_delay; int ageing_time; @@ -49,6 +52,22 @@ struct bridge_config { int max_age; }; +static inline int system_get_addr_family(unsigned int flags) +{ + if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6) + return AF_INET6; + else + return AF_INET; +} + +static inline int system_get_addr_len(unsigned int flags) +{ + if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6) + return sizeof(struct in_addr); + else + return sizeof(struct in6_addr); +} + int system_init(void); int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg); @@ -67,6 +86,8 @@ int system_if_dump_info(struct device *dev, struct blob_buf *b); int system_if_dump_stats(struct device *dev, struct blob_buf *b); struct device *system_if_get_parent(struct device *dev); bool system_if_force_external(const char *ifname); +void system_if_apply_settings(struct device *dev, struct device_settings *s); + int system_add_address(struct device *dev, struct device_addr *addr); int system_del_address(struct device *dev, struct device_addr *addr); @@ -75,9 +96,21 @@ int system_add_route(struct device *dev, struct device_route *route); int system_del_route(struct device *dev, struct device_route *route); int system_flush_routes(void); +bool system_resolve_rt_table(const char *name, unsigned int *id); + int system_del_ip_tunnel(const char *name); int system_add_ip_tunnel(const char *name, struct blob_attr *attr); +int system_add_iprule(struct iprule *rule); +int system_del_iprule(struct iprule *rule); +int system_flush_iprules(void); + +bool system_resolve_iprule_action(const char *action, unsigned int *id); + time_t system_get_rtime(void); +void system_fd_set_cloexec(int fd); + +int system_update_ipv6_mtu(struct device *device, int mtu); + #endif