X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fsystemd%2Fsd-network.h;fp=src%2Fsystemd%2Fsd-network.h;h=49034e84d02150345a13f2c5a4b33afea24f8117;hp=6bba5cfa37c19b7fbcb52d4bf82854ca0b7794d0;hb=d6731e4c7964ee2860d4f5abdb0b52acd7a66960;hpb=5323ead145304785121b72dcbc1c244303de7575 diff --git a/src/systemd/sd-network.h b/src/systemd/sd-network.h index 6bba5cfa3..49034e84d 100644 --- a/src/systemd/sd-network.h +++ b/src/systemd/sd-network.h @@ -75,28 +75,28 @@ int sd_network_get_ntp(char ***addr); * Possible return codes: * -ENODATA: networkd is not aware of the link */ -int sd_network_get_link_state(int ifindex, char **state); +int sd_network_link_get_state(int ifindex, char **state); /* Get operatinal state from ifindex. * Possible states: down, up, dormant, carrier, degraded, routable * Possible return codes: * -ENODATA: networkd is not aware of the link */ -int sd_network_get_link_operational_state(int ifindex, char **state); +int sd_network_link_get_operational_state(int ifindex, char **state); /* Get DNS entries for a given link. These are string representations of * IP addresses */ -int sd_network_get_link_dns(int ifindex, char ***addr); +int sd_network_link_get_dns(int ifindex, char ***addr); /* Get NTP entries for a given link. These are domain names or string * reperesentations of IP addresses */ -int sd_network_get_link_ntp(int ifindex, char ***addr); +int sd_network_link_get_ntp(int ifindex, char ***addr); /* Indicates whether or not LLMNR should be enabled for the link * Possible levels of support: yes, no, resolve * Possible return codes: * -ENODATA: networkd is not aware of the link*/ -int sd_network_get_link_llmnr(int ifindex, char **llmnr); +int sd_network_link_get_llmnr(int ifindex, char **llmnr); /* Monitor object */ typedef struct sd_network_monitor sd_network_monitor;