├── .gitignore ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── README ├── TODO ├── autogen.sh ├── bootstrap ├── bootstrap-configure ├── clean.sh ├── config.rpath ├── configure.ac ├── data ├── icons │ ├── ICONS_LICENSE │ ├── gsm-3g-full.png │ ├── network-idle-symbolic.png │ ├── network-offline-symbolic.png │ ├── network-transmit-receive-symbolic.png │ ├── network-wired-symbolic.png │ ├── network-wireless-signal-excellent-symbolic.png │ ├── network-wireless-signal-good-symbolic.png │ ├── network-wireless-signal-ok-symbolic.png │ ├── network-wireless-signal-weak-symbolic.png │ └── nm-adhoc.png └── ui │ ├── agent.ui │ ├── left_menu.ui │ ├── right_menu.ui │ ├── settings.ui │ └── tray.ui ├── gdbus ├── client.c ├── gdbus.h ├── mainloop.c ├── object.c ├── polkit.c └── watch.c ├── include └── version.h.in ├── lib ├── agent.c ├── connman-interface.h ├── connman-private.h ├── cui-dbus.h ├── dbus.c ├── interface.c ├── manager.c ├── service.c ├── technology.c └── utils.c ├── m4 ├── ChangeLog ├── codeset.m4 ├── fcntl-o.m4 ├── gettext.m4 ├── glibc2.m4 ├── glibc21.m4 ├── iconv.m4 ├── intdiv0.m4 ├── intl.m4 ├── intldir.m4 ├── intlmacosx.m4 ├── intltool.m4 ├── intmax.m4 ├── inttypes-pri.m4 ├── inttypes_h.m4 ├── lcmessage.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── libtool.m4 ├── lock.m4 ├── longlong.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── nls.m4 ├── po.m4 ├── printf-posix.m4 ├── progtest.m4 ├── size_max.m4 ├── stdint_h.m4 ├── threadlib.m4 ├── uintmax_t.m4 ├── visibility.m4 ├── wchar_t.m4 ├── wint_t.m4 └── xsize.m4 ├── po ├── ChangeLog ├── LINGUAS ├── Makefile.in.in ├── POTFILES.in ├── de.po ├── es.po ├── fr.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── src ├── agent_dialogs.c ├── connman-ui-gtk.h ├── gtkservice.c ├── gtkservice.h ├── gtktechnology.c ├── gtktechnology.h ├── left-menu.c ├── main.c ├── right-menu.c ├── settings.c ├── theme.c ├── tray.c └── utils.c └── valgrind.suppressions /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf --install --verbose 4 | -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/bootstrap -------------------------------------------------------------------------------- /bootstrap-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/bootstrap-configure -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/clean.sh -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/config.rpath -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/configure.ac -------------------------------------------------------------------------------- /data/icons/ICONS_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/ICONS_LICENSE -------------------------------------------------------------------------------- /data/icons/gsm-3g-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/gsm-3g-full.png -------------------------------------------------------------------------------- /data/icons/network-idle-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-idle-symbolic.png -------------------------------------------------------------------------------- /data/icons/network-offline-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-offline-symbolic.png -------------------------------------------------------------------------------- /data/icons/network-transmit-receive-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-transmit-receive-symbolic.png -------------------------------------------------------------------------------- /data/icons/network-wired-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-wired-symbolic.png -------------------------------------------------------------------------------- /data/icons/network-wireless-signal-excellent-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-wireless-signal-excellent-symbolic.png -------------------------------------------------------------------------------- /data/icons/network-wireless-signal-good-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-wireless-signal-good-symbolic.png -------------------------------------------------------------------------------- /data/icons/network-wireless-signal-ok-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-wireless-signal-ok-symbolic.png -------------------------------------------------------------------------------- /data/icons/network-wireless-signal-weak-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/network-wireless-signal-weak-symbolic.png -------------------------------------------------------------------------------- /data/icons/nm-adhoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/icons/nm-adhoc.png -------------------------------------------------------------------------------- /data/ui/agent.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/ui/agent.ui -------------------------------------------------------------------------------- /data/ui/left_menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/ui/left_menu.ui -------------------------------------------------------------------------------- /data/ui/right_menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/ui/right_menu.ui -------------------------------------------------------------------------------- /data/ui/settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/ui/settings.ui -------------------------------------------------------------------------------- /data/ui/tray.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/data/ui/tray.ui -------------------------------------------------------------------------------- /gdbus/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/gdbus/client.c -------------------------------------------------------------------------------- /gdbus/gdbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/gdbus/gdbus.h -------------------------------------------------------------------------------- /gdbus/mainloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/gdbus/mainloop.c -------------------------------------------------------------------------------- /gdbus/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/gdbus/object.c -------------------------------------------------------------------------------- /gdbus/polkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/gdbus/polkit.c -------------------------------------------------------------------------------- /gdbus/watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/gdbus/watch.c -------------------------------------------------------------------------------- /include/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/include/version.h.in -------------------------------------------------------------------------------- /lib/agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/agent.c -------------------------------------------------------------------------------- /lib/connman-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/connman-interface.h -------------------------------------------------------------------------------- /lib/connman-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/connman-private.h -------------------------------------------------------------------------------- /lib/cui-dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/cui-dbus.h -------------------------------------------------------------------------------- /lib/dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/dbus.c -------------------------------------------------------------------------------- /lib/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/interface.c -------------------------------------------------------------------------------- /lib/manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/manager.c -------------------------------------------------------------------------------- /lib/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/service.c -------------------------------------------------------------------------------- /lib/technology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/technology.c -------------------------------------------------------------------------------- /lib/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/lib/utils.c -------------------------------------------------------------------------------- /m4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/ChangeLog -------------------------------------------------------------------------------- /m4/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/codeset.m4 -------------------------------------------------------------------------------- /m4/fcntl-o.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/fcntl-o.m4 -------------------------------------------------------------------------------- /m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/gettext.m4 -------------------------------------------------------------------------------- /m4/glibc2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/glibc2.m4 -------------------------------------------------------------------------------- /m4/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/glibc21.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/intdiv0.m4 -------------------------------------------------------------------------------- /m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/intl.m4 -------------------------------------------------------------------------------- /m4/intldir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/intldir.m4 -------------------------------------------------------------------------------- /m4/intlmacosx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/intlmacosx.m4 -------------------------------------------------------------------------------- /m4/intltool.m4: -------------------------------------------------------------------------------- 1 | /usr/share/aclocal/intltool.m4 -------------------------------------------------------------------------------- /m4/intmax.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/intmax.m4 -------------------------------------------------------------------------------- /m4/inttypes-pri.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/inttypes-pri.m4 -------------------------------------------------------------------------------- /m4/inttypes_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/inttypes_h.m4 -------------------------------------------------------------------------------- /m4/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/lcmessage.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/lock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/lock.m4 -------------------------------------------------------------------------------- /m4/longlong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/longlong.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/nls.m4 -------------------------------------------------------------------------------- /m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/po.m4 -------------------------------------------------------------------------------- /m4/printf-posix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/printf-posix.m4 -------------------------------------------------------------------------------- /m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/progtest.m4 -------------------------------------------------------------------------------- /m4/size_max.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/size_max.m4 -------------------------------------------------------------------------------- /m4/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/stdint_h.m4 -------------------------------------------------------------------------------- /m4/threadlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/threadlib.m4 -------------------------------------------------------------------------------- /m4/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/uintmax_t.m4 -------------------------------------------------------------------------------- /m4/visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/visibility.m4 -------------------------------------------------------------------------------- /m4/wchar_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/wchar_t.m4 -------------------------------------------------------------------------------- /m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/wint_t.m4 -------------------------------------------------------------------------------- /m4/xsize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/m4/xsize.m4 -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/agent_dialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/agent_dialogs.c -------------------------------------------------------------------------------- /src/connman-ui-gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/connman-ui-gtk.h -------------------------------------------------------------------------------- /src/gtkservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/gtkservice.c -------------------------------------------------------------------------------- /src/gtkservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/gtkservice.h -------------------------------------------------------------------------------- /src/gtktechnology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/gtktechnology.c -------------------------------------------------------------------------------- /src/gtktechnology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/gtktechnology.h -------------------------------------------------------------------------------- /src/left-menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/left-menu.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/main.c -------------------------------------------------------------------------------- /src/right-menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/right-menu.c -------------------------------------------------------------------------------- /src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/settings.c -------------------------------------------------------------------------------- /src/theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/theme.c -------------------------------------------------------------------------------- /src/tray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/tray.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/src/utils.c -------------------------------------------------------------------------------- /valgrind.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbursztyka/connman-ui/HEAD/valgrind.suppressions --------------------------------------------------------------------------------