mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
util: netdevip: Introduce virNetDevIPAddrFree helper
This will not only help us in the future when adding more and more VIR_AUTOPTR instances, we're also consistent in that a compound type gets its own function which can easily be extended in the future if necessary. Signed-off-by: Sukrit Bhatnagar <skrtbhtngr@gmail.com> Signed-off-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
parent
b0a8cd876c
commit
66a19eaa41
@ -1129,3 +1129,9 @@ virNetDevIPInfoAddToDev(const char *ifname,
|
|||||||
cleanup:
|
cleanup:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
virNetDevIPAddrFree(virNetDevIPAddrPtr ip)
|
||||||
|
{
|
||||||
|
VIR_FREE(ip);
|
||||||
|
}
|
||||||
|
@ -84,6 +84,7 @@ int virNetDevIPAddrGet(const char *ifname, virSocketAddrPtr addr)
|
|||||||
int virNetDevIPWaitDadFinish(virSocketAddrPtr *addrs, size_t count)
|
int virNetDevIPWaitDadFinish(virSocketAddrPtr *addrs, size_t count)
|
||||||
ATTRIBUTE_NONNULL(1);
|
ATTRIBUTE_NONNULL(1);
|
||||||
bool virNetDevIPCheckIPv6Forwarding(void);
|
bool virNetDevIPCheckIPv6Forwarding(void);
|
||||||
|
void virNetDevIPAddrFree(virNetDevIPAddrPtr ip);
|
||||||
|
|
||||||
/* virNetDevIPRoute object */
|
/* virNetDevIPRoute object */
|
||||||
void virNetDevIPRouteFree(virNetDevIPRoutePtr def);
|
void virNetDevIPRouteFree(virNetDevIPRoutePtr def);
|
||||||
|
Loading…
Reference in New Issue
Block a user