X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=proto.h;h=57426bd70accdcc8f7542783bb5f3c726bc6f3a8;hp=c1b97b267e1bcaf892c7108666c009b2bc659ec0;hb=43c2934a4d3f9a3e9d7fc2a4e9a32a2bef7174ba;hpb=f782148ef2be32343f13b033c0df04a56fb9c38e diff --git a/proto.h b/proto.h index c1b97b2..57426bd 100644 --- a/proto.h +++ b/proto.h @@ -8,6 +8,7 @@ struct proto_handler; enum interface_proto_event { IFPEV_UP, IFPEV_DOWN, + IFPEV_LINK_LOST, }; enum interface_proto_cmd { @@ -51,7 +52,7 @@ void proto_init_interface(struct interface *iface, struct blob_attr *attr); void proto_attach_interface(struct interface *iface, const char *proto_name); int interface_proto_event(struct interface_proto_state *proto, enum interface_proto_cmd cmd, bool force); -int proto_apply_static_settings(struct interface_proto_state *state, - struct blob_attr *attr); +struct device_addr *proto_parse_ip_addr_string(const char *str, bool v6, int mask); +unsigned int parse_netmask_string(const char *str, bool v6); #endif