summaryrefslogtreecommitdiff
path: root/plugins/nmcompat.c
AgeCommit message (Collapse)AuthorFilesLines
2015-08-07Base Code merged to SPIN 2.4submit/tizen/20150810.034432hyunuktak1-0/+0
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com> Change-Id: I84a42375b5c59739e4caca1f726699ea7647ef17
2014-07-17Imported Upstream version 1.24upstream/1.24Zhang zhengguang1-15/+15
2012-05-18Do not set signature and reply in GDBus tablesHenrique Dante de Almeida1-3/+3
Use GDBUS_* macros, so signature and reply fields are not set in each method/signal.
2012-05-18Convert GDBus methods and signals to use macro helpersHenrique Dante de Almeida1-3/+7
With these macro helpers we can separate in/out arguments and use their own vector.
2012-05-18Constify GDBus signal tablesHenrique Dante de Almeida1-1/+1
2012-05-18Constify GDBus method tablesHenrique Dante de Almeida1-1/+1
2012-04-29plugins: Update copyright informationMarcel Holtmann1-1/+1
2012-04-29nmcompat: Use more detailed state informationMarcel Holtmann1-24/+81
2012-04-29nmcompat: Fix error messageMarcel Holtmann1-1/+1
2011-08-30nmcompat: Update with new NetworkManager connection statesMarcel Holtmann1-108/+49
2011-01-28nmcompat: Support nm dbus propertiesKalle Valo1-0/+94
After some investigation I found that network-manager also provides the network state through properties and libnm-glib library uses this instead of the GetState() method. Add Get() method call retrieve the property and a PropertyChanged signal to notify state changes. Now empathy, which uses libnm-glib, properly detects network state changes. I deliberately omitted GetAll() method because libnm-glib doesn't seem to need it.
2011-01-28nmcompat: Add pluginKalle Valo1-0/+188
Add plugin which provides network-manager state interface to applications. This is a direct copy of what was in src/manager.c, just copied all into a plugin.