blobmsg_add_string(&b, NULL, "static");
blobmsg_close_array(&b, m);
- buf = blobmsg_alloc_string_buffer(&b, "ip", INET_ADDRSTRLEN);
+ buf = blobmsg_alloc_string_buffer(&b, "address", INET_ADDRSTRLEN);
struct in_addr addr = {.s_addr = c->addr};
inet_ntop(AF_INET, &addr, buf, INET_ADDRSTRLEN);
blobmsg_add_string_buffer(&b);
uint32_t valid, _unused void *arg)
{
void *a = blobmsg_open_table(&b, NULL);
- char *buf = blobmsg_alloc_string_buffer(&b, NULL, INET6_ADDRSTRLEN);
+ char *buf = blobmsg_alloc_string_buffer(&b, "address", INET6_ADDRSTRLEN);
inet_ntop(AF_INET6, addr, buf, INET6_ADDRSTRLEN);
blobmsg_add_string_buffer(&b);