mbox series

[v3,0/9] DPP PKEX Changes

Message ID 20231031184750.722404-1-prestwoj@gmail.com (mailing list archive)
Headers show
Series DPP PKEX Changes | expand

Message

James Prestwood Oct. 31, 2023, 6:47 p.m. UTC
v3:
 * Corrected the config header check patch

 * Kept the scan/connect logic in DPP but instead changed
   __station_connect_network to be more flexible to this
   use case. I don't think there was many great ways to
   do this, I'm open to suggestions on alternatives.

   Also, I didn't forget about the need to filter the by
   SSID in the DPP scan path, I just left that out for now
   until the station <-> DPP interaction is nailed down. In
   addition to your comments I relalized that the scan notify
   callback should call __station_connect_network (or
   whatever) rather than enabling autoconnect. I'll send
   follow-up patches for this.

 * Documented SharedCodeAgent interface

 * Better documented the DPP SharedCode interface methods

James Prestwood (9):
  dpp: remove scan_periodic_stop calls
  dpp: fix config request header check
  dpp: allow enrollee to be authentication initiator
  dbus: add net.connman.iwd.SharedCodeAgent DBus interface
  station: provide new state in __station_connect_network
  doc: PKEX support for DPP
  dpp: SharedCode interface, {Register,Unregister}SharedCodeAgent
  dpp: initial version of PKEX enrollee support
  dpp: initial version of PKEX configurator support

 doc/device-provisioning-api.txt |  149 +++
 src/dbus.h                      |    1 +
 src/dpp.c                       | 1681 +++++++++++++++++++++++++++++--
 src/network.c                   |    3 +-
 src/station.c                   |   23 +-
 src/station.h                   |    2 +-
 6 files changed, 1754 insertions(+), 105 deletions(-)