X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fsystemd%2Fsd-network.h;h=ec01e07e85ba28e14ef415d53d846905c5a99306;hp=0f32c448f846c292bb2d50f6f35966ba11975b75;hb=6f4dedb250f2d607eceefaa491f338becbeee7c0;hpb=6dcaa6f59a39dd4acc67fc2e4873c37e2ed46430 diff --git a/src/systemd/sd-network.h b/src/systemd/sd-network.h index 0f32c448f..ec01e07e8 100644 --- a/src/systemd/sd-network.h +++ b/src/systemd/sd-network.h @@ -76,21 +76,13 @@ int sd_network_get_operational_state(char **state); /* Get DHCPv4 lease from ifindex. */ int sd_network_get_dhcp_lease(int ifindex, sd_dhcp_lease **ret); -/* Returns true if link is configured to respect DNS entries received by DHCP */ -int sd_network_dhcp_use_dns(int ifindex); +/* Get DNS entries for a given link. These are string representations of + * IP addresses */ +int sd_network_get_dns(int ifindex, char ***addr); -/* Returns true if link is configured to respect NTP entries received by DHCP */ -int sd_network_dhcp_use_ntp(int ifindex); - -/* Get IPv4 DNS entries statically configured for the link */ -int sd_network_get_dns(int ifindex, struct in_addr **addr); - -/* Get IPv6 DNS entries statically configured for the link */ -int sd_network_get_dns6(int ifindex, struct in6_addr **addr); - -/* Get all network interfaces' indices, and store them in *indices. Returns - * the number of indices. If indices is NULL, only returns the number of indices. */ -int sd_network_get_ifindices(int **ifindices); +/* Get NTP entries for a given link. These are domain names or string + * reperesentations of IP addresses */ +int sd_network_get_ntp(int ifindex, char ***addr); /* Monitor object */ typedef struct sd_network_monitor sd_network_monitor;