Hi Daniel, Thanks for having implemented this change very quicly :) > Instead of only having "offline" and "online" states, we support > now having "offline", "idle", "connected" and "online" as on the please look at my comment bellow
> Manager.State documenation update required. > + > + if (offlinemode == TRUE) > + return "offline"; > > + count = notifier_count_online(); > if (count > 0) > return "online"; > > - return "offline"; > + count = __connman_notifier_count_connected(); > + if (count > 0) > + return "connected"; The doc uses "ready" state and not "connected", in order to match the service state. > + > + return "idle"; > } > Regards, Julien _______________________________________________ connman mailing list [email protected] http://lists.connman.net/listinfo/connman
