summaryrefslogtreecommitdiff
path: root/src/network/networkd-json.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2021-11-14 14:52:03 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2021-11-25 22:35:35 +0900
commitcfb7e06b1eb25ba755d9498d207dc683a6ec8d98 (patch)
treee59c86d672ee18667e5495dcdc1d615ee2547cbe /src/network/networkd-json.c
parent42ceb47456f2435c2e6c1071a7ae90d5304aa78a (diff)
downloadsystemd-cfb7e06b1eb25ba755d9498d207dc683a6ec8d98.tar.gz
network: json: use new building json macros
Diffstat (limited to 'src/network/networkd-json.c')
-rw-r--r--src/network/networkd-json.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/network/networkd-json.c b/src/network/networkd-json.c
index 4828a0ed50..cd39a8149a 100644
--- a/src/network/networkd-json.c
+++ b/src/network/networkd-json.c
@@ -12,7 +12,7 @@ static int network_build_json(Network *network, JsonVariant **ret) {
assert(ret);
return json_build(ret, JSON_BUILD_OBJECT(
- JSON_BUILD_PAIR("NetworkFile", JSON_BUILD_STRING(network->filename))));
+ JSON_BUILD_PAIR_STRING("NetworkFile", network->filename)));
}
static int device_build_json(sd_device *device, JsonVariant **ret) {
@@ -31,10 +31,10 @@ static int device_build_json(sd_device *device, JsonVariant **ret) {
(void) sd_device_get_property_value(device, "ID_MODEL", &model);
return json_build(ret, JSON_BUILD_OBJECT(
- JSON_BUILD_PAIR("LinkFile", JSON_BUILD_STRING(link)),
- JSON_BUILD_PAIR("Path", JSON_BUILD_STRING(path)),
- JSON_BUILD_PAIR("Vendor", JSON_BUILD_STRING(vendor)),
- JSON_BUILD_PAIR("Model", JSON_BUILD_STRING(model))));
+ JSON_BUILD_PAIR_STRING_NON_EMPTY("LinkFile", link),
+ JSON_BUILD_PAIR_STRING_NON_EMPTY("Path", path),
+ JSON_BUILD_PAIR_STRING_NON_EMPTY("Vendor", vendor),
+ JSON_BUILD_PAIR_STRING_NON_EMPTY("Model", model)));
}
int link_build_json(Link *link, JsonVariant **ret) {
@@ -50,18 +50,18 @@ int link_build_json(Link *link, JsonVariant **ret) {
return r;
r = json_build(&v, JSON_BUILD_OBJECT(
- JSON_BUILD_PAIR("Index", JSON_BUILD_INTEGER(link->ifindex)),
- JSON_BUILD_PAIR("Name", JSON_BUILD_STRING(link->ifname)),
- JSON_BUILD_PAIR("AlternativeNames", JSON_BUILD_STRV(link->alternative_names)),
- JSON_BUILD_PAIR("Type", JSON_BUILD_STRING(type)),
- JSON_BUILD_PAIR("Driver", JSON_BUILD_STRING(link->driver)),
- JSON_BUILD_PAIR("SetupState", JSON_BUILD_STRING(link_state_to_string(link->state))),
- JSON_BUILD_PAIR("OperationalState", JSON_BUILD_STRING(link_operstate_to_string(link->operstate))),
- JSON_BUILD_PAIR("CarrierState", JSON_BUILD_STRING(link_carrier_state_to_string(link->carrier_state))),
- JSON_BUILD_PAIR("AddressState", JSON_BUILD_STRING(link_address_state_to_string(link->address_state))),
- JSON_BUILD_PAIR("IPv4AddressState", JSON_BUILD_STRING(link_address_state_to_string(link->ipv4_address_state))),
- JSON_BUILD_PAIR("IPv6AddressState", JSON_BUILD_STRING(link_address_state_to_string(link->ipv6_address_state))),
- JSON_BUILD_PAIR("OnlineState", JSON_BUILD_STRING(link_online_state_to_string(link->online_state)))));
+ JSON_BUILD_PAIR_INTEGER("Index", link->ifindex),
+ JSON_BUILD_PAIR_STRING("Name", link->ifname),
+ JSON_BUILD_PAIR_STRV_NON_EMPTY("AlternativeNames", link->alternative_names),
+ JSON_BUILD_PAIR_STRING("Type", type),
+ JSON_BUILD_PAIR_STRING_NON_EMPTY("Driver", link->driver),
+ JSON_BUILD_PAIR_STRING("SetupState", link_state_to_string(link->state)),
+ JSON_BUILD_PAIR_STRING("OperationalState", link_operstate_to_string(link->operstate)),
+ JSON_BUILD_PAIR_STRING("CarrierState", link_carrier_state_to_string(link->carrier_state)),
+ JSON_BUILD_PAIR_STRING("AddressState", link_address_state_to_string(link->address_state)),
+ JSON_BUILD_PAIR_STRING("IPv4AddressState", link_address_state_to_string(link->ipv4_address_state)),
+ JSON_BUILD_PAIR_STRING("IPv6AddressState", link_address_state_to_string(link->ipv6_address_state)),
+ JSON_BUILD_PAIR_STRING("OnlineState", link_online_state_to_string(link->online_state))));
if (r < 0)
return r;