summaryrefslogtreecommitdiff
path: root/src/technology.c
diff options
context:
space:
mode:
authorChengyi Zhao <chengyi1.zhao@archermind.com>2013-07-10 20:00:36 +0800
committerZhang zhengguang <zhengguang.zhang@intel.com>2014-10-31 16:06:20 +0800
commitb846a12300fa054beb16e97add2d13cd8e2496ae (patch)
treea31aa8928f4b179f15e008106c9ab08472a4901b /src/technology.c
parent5bd77bc62bc47d5752a9060cb887883a9d1b9844 (diff)
downloadconnman-b846a12300fa054beb16e97add2d13cd8e2496ae.tar.gz
connman-b846a12300fa054beb16e97add2d13cd8e2496ae.tar.bz2
connman-b846a12300fa054beb16e97add2d13cd8e2496ae.zip
Tethering: Notify listeners when station connection changes
Change-Id: I048c1a8a348b6f862ca104ad2fbe971f580fe180
Diffstat (limited to 'src/technology.c')
-rw-r--r--src/technology.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/technology.c b/src/technology.c
index d80d9e6d..a06efd3a 100644
--- a/src/technology.c
+++ b/src/technology.c
@@ -1070,6 +1070,16 @@ static const GDBusMethodTable technology_methods[] = {
static const GDBusSignalTable technology_signals[] = {
{ GDBUS_SIGNAL("PropertyChanged",
GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
+ { GDBUS_SIGNAL("DhcpConnected",
+ GDBUS_ARGS({ "aptype", "s" },
+ { "ipaddr", "s" },
+ { "macaddr", "s" },
+ { "hostname", "s" })) },
+ { GDBUS_SIGNAL("DhcpLeaseDeleted",
+ GDBUS_ARGS({ "aptype", "s" },
+ { "ipaddr", "s" },
+ { "macaddr", "s" },
+ { "hostname", "s" })) },
{ },
};