X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Floopback-setup.c;h=ffe661aa9e31d3e751d593d87bd14020aaf396f8;hb=eff05270986a13e7de93ae16311f654d3f7c166f;hp=1999959946c8e103ed4ecc70bd700682a103ecca;hpb=0a0dc69b655cfb10cab39133f5d521e7b35ce3d5;p=elogind.git diff --git a/src/core/loopback-setup.c b/src/core/loopback-setup.c index 199995994..ffe661aa9 100644 --- a/src/core/loopback-setup.c +++ b/src/core/loopback-setup.c @@ -51,7 +51,8 @@ static int add_addresses(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_ad _cleanup_sd_rtnl_message_unref_ sd_rtnl_message *ipv4 = NULL, *ipv6 = NULL; int r; - r = sd_rtnl_message_addr_new(RTM_NEWADDR, if_loopback, AF_INET, 8, IFA_F_PERMANENT, RT_SCOPE_HOST, &ipv4); + r = sd_rtnl_message_addr_new(RTM_NEWADDR, if_loopback, AF_INET, 8, + IFA_F_PERMANENT, RT_SCOPE_HOST, &ipv4); if (r < 0) return r; @@ -68,7 +69,8 @@ static int add_addresses(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_ad if (!socket_ipv6_is_supported()) return 0; - r = sd_rtnl_message_addr_new(RTM_NEWADDR, if_loopback, AF_INET6, 128, 0, 0, &ipv6); + r = sd_rtnl_message_addr_new(RTM_NEWADDR, if_loopback, AF_INET6, 128, + IFA_F_PERMANENT, RT_SCOPE_HOST, &ipv6); if (r < 0) return r; @@ -89,7 +91,7 @@ static int start_interface(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_ _cleanup_sd_rtnl_message_unref_ sd_rtnl_message *req = NULL; int r; - r = sd_rtnl_message_link_new(RTM_NEWLINK, if_loopback, &req); + r = sd_rtnl_message_link_new(RTM_SETLINK, if_loopback, &req); if (r < 0) return r; @@ -97,10 +99,6 @@ static int start_interface(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_ if (r < 0) return r; - r = sd_rtnl_message_append_in_addr(req, IFA_LOCAL, ipv4_address); - if (r < 0) - return r; - r = sd_rtnl_call_async(rtnl, req, &pipe_handler, counter, 0, NULL); if (r < 0) return r;