Searched defs:sd_ipv4ll (Results 1 - 2 of 2) sorted by relevance
/systemd/src/systemd/ |
H A D | sd-ipv4ll.h | 38 typedef struct sd_ipv4ll sd_ipv4ll; typedef in typeref:struct:sd_ipv4ll 39 typedef void (*sd_ipv4ll_cb_t)(sd_ipv4ll *ll, int event, void *userdata); 41 int sd_ipv4ll_detach_event(sd_ipv4ll *ll); 42 int sd_ipv4ll_attach_event(sd_ipv4ll *ll, sd_event *event, int priority); 43 int sd_ipv4ll_get_address(sd_ipv4ll *ll, struct in_addr *address); 44 int sd_ipv4ll_set_callback(sd_ipv4ll *ll, sd_ipv4ll_cb_t cb, void *userdata); 45 int sd_ipv4ll_set_mac(sd_ipv4ll *ll, const struct ether_addr *addr); 46 int sd_ipv4ll_set_index(sd_ipv4ll *ll, int interface_index); 47 int sd_ipv4ll_set_address(sd_ipv4ll *l [all...] |
/systemd/src/libsystemd-network/ |
H A D | sd-ipv4ll.c | 43 _cleanup_(sd_ipv4ll_unrefp) _unused_ sd_ipv4ll *_dont_destroy_##ll = sd_ipv4ll_ref(ll) 45 struct sd_ipv4ll { struct 59 sd_ipv4ll *sd_ipv4ll_ref(sd_ipv4ll *ll) { 69 sd_ipv4ll *sd_ipv4ll_unref(sd_ipv4ll *ll) { 90 int sd_ipv4ll_new(sd_ipv4ll **ret) { 91 _cleanup_(sd_ipv4ll_unrefp) sd_ipv4ll *ll = NULL; 96 ll = new0(sd_ipv4ll, 1); 116 int sd_ipv4ll_stop(sd_ipv4ll *l [all...] |
Completed in 21 milliseconds