1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-02-13 07:21:56 +00:00

miracle-wifid: rename link_set_managed()

rename to prevent confusing with managed event notification

Change-Id: I0f0d01f97156044bbb225e199b2717d5ea9c1a24
This commit is contained in:
Derek Dai 2017-04-14 15:08:39 +08:00
parent c2fc985624
commit 2e7c11d265
4 changed files with 10 additions and 10 deletions

View file

@ -612,7 +612,7 @@ static int link_dbus_manage(sd_bus_message *msg,
sd_bus_error *err)
{
struct link *l = data;
int r = link_set_managed(l, true);
int r = link_manage(l, true);
if(r < 0)
return r;
@ -624,7 +624,7 @@ static int link_dbus_unmanage(sd_bus_message *msg,
sd_bus_error *err)
{
struct link *l = data;
int r = link_set_managed(l, false);
int r = link_manage(l, false);
if(r < 0)
return r;

View file

@ -123,7 +123,7 @@ void link_free(struct link *l)
log_debug("free link: %s (%u)", l->ifname, l->ifindex);
link_set_managed(l, false);
link_manage(l, false);
link_dbus_removed(l);
l->public = false;
@ -135,7 +135,7 @@ void link_free(struct link *l)
supplicant_free(l->s);
/* link_set_managed(l, false) already removed all peers */
/* link_manage(l, false) already removed all peers */
shl_htable_clear_str(&l->peers, NULL, NULL);
free(l->mac_addr);
@ -180,7 +180,7 @@ bool link_get_managed(struct link *l)
return l->managed;
}
int link_set_managed(struct link *l, bool set)
int link_manage(struct link *l, bool set)
{
int r;

View file

@ -116,7 +116,7 @@ static void manager_add_udev_link(struct manager *m,
#else
if ((!interface_name || !strcmp(interface_name, ifname)) && !lazy_managed) {
#endif
link_set_managed(l, true);
link_manage(l, true);
} else {
log_debug("ignored device: %s", ifname);
}
@ -156,12 +156,12 @@ static int manager_udev_fn(sd_event_source *source,
#ifdef RELY_UDEV
if (udev_device_has_tag(d, "miracle") && !lazy_managed)
link_set_managed(l, true);
link_manage(l, true);
else
link_set_managed(l, false);
link_manage(l, false);
#else
if ((!interface_name || !strcmp(interface_name, ifname)) && !lazy_managed) {
link_set_managed(l, true);
link_manage(l, true);
} else {
log_debug("ignored device: %s", ifname);
}

View file

@ -161,7 +161,7 @@ void link_free(struct link *l);
void link_use_dev(struct link *l);
bool link_is_using_dev(struct link *l);
int link_set_managed(struct link *l, bool set);
int link_manage(struct link *l, bool set);
bool link_get_managed(struct link *l);
int link_renamed(struct link *l, const char *ifname);