dbus: Declare GONegotiation signals properly
These signals delivers an array of key/value pairs, thus declaring those as it should. Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
parent
b19c098e75
commit
fc591a771c
1 changed files with 3 additions and 2 deletions
|
@ -1220,7 +1220,7 @@ nomem:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Method to emit GONeogtiation Success or Failure signals based
|
* Method to emit GONegotiation Success or Failure signals based
|
||||||
* on status.
|
* on status.
|
||||||
* @status: Status of the GO neg request. 0 for success, other for errors.
|
* @status: Status of the GO neg request. 0 for success, other for errors.
|
||||||
*/
|
*/
|
||||||
|
@ -3047,12 +3047,13 @@ static const struct wpa_dbus_signal_desc wpas_dbus_interface_signals[] = {
|
||||||
},
|
},
|
||||||
{ "GONegotiationSuccess", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
|
{ "GONegotiationSuccess", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
|
||||||
{
|
{
|
||||||
|
{ "properties", "a{sv}", ARG_OUT },
|
||||||
END_ARGS
|
END_ARGS
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ "GONegotiationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
|
{ "GONegotiationFailure", WPAS_DBUS_NEW_IFACE_P2PDEVICE,
|
||||||
{
|
{
|
||||||
{ "status", "i", ARG_OUT },
|
{ "properties", "a{sv}", ARG_OUT },
|
||||||
END_ARGS
|
END_ARGS
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue