X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=proto.c;h=b45a2d586cb094f37d2e7c06bec9cd15d391eb71;hp=40e7fc81237c2e84d56b2337c4bf85e9e9fec9a2;hb=7872d4e2889c364ffa8e01ea43e465e21ab32a3c;hpb=d7f7f002e3d168aedb5f2bc92180f5966482d7d9 diff --git a/proto.c b/proto.c index 40e7fc8..b45a2d5 100644 --- a/proto.c +++ b/proto.c @@ -349,13 +349,6 @@ proto_apply_static_ip_settings(struct interface *iface, struct blob_attr *attr) if (parse_prefix_list(iface, cur) < 0) goto out; -/* TODO: Clarify - if (!n_v4 && !n_v6) { - error = "NO_ADDRESS"; - goto error; - } -*/ - if (n_v4 < 0 || n_v6 < 0) goto out; @@ -386,7 +379,6 @@ proto_apply_ip_settings(struct interface *iface, struct blob_attr *attr, bool ex { struct blob_attr *tb[__OPT_MAX]; struct blob_attr *cur; -// const char *error; int n_v4 = 0, n_v6 = 0; blobmsg_parse(proto_ip_attributes, __OPT_MAX, tb, blob_data(attr), blob_len(attr)); @@ -401,13 +393,6 @@ proto_apply_ip_settings(struct interface *iface, struct blob_attr *attr, bool ex if (parse_prefix_list(iface, cur) < 0) goto out; -/* TODO: clarify - if (!n_v4 && !n_v6) { - error = "NO_ADDRESS"; - goto error; - } -*/ - if (n_v4 < 0 || n_v6 < 0) goto out; @@ -427,10 +412,6 @@ proto_apply_ip_settings(struct interface *iface, struct blob_attr *attr, bool ex return 0; -/* TODO: clarify -error: - interface_add_error(iface, "proto", error, NULL, 0); -*/ out: return -1; }