Index: sources/device/DeviceController.cpp =================================================================== diff -u -r0e122c98700951af539d9f47c5578e26d640fcc7 -rc73feffa73c7fe073a7a7581144f5806dfc91beb --- sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision 0e122c98700951af539d9f47c5578e26d640fcc7) +++ sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision c73feffa73c7fe073a7a7581144f5806dfc91beb) @@ -106,6 +106,9 @@ connect(&_fileSystemWatcher , SIGNAL( fileChanged(const QString &)), this , SLOT( onWatchFileChanged(const QString &))); + connect(&_ApplicationController , SIGNAL(didPOSTInformationReady(const QString &, const QString &, const QString &)), + this , SLOT( onPOSTInformationReady(const QString &, const QString &, const QString &))); + DEVICE_DEV_INIT_CONNECTIONS_LIST } @@ -714,3 +717,10 @@ { emit didWatchFileChange(vFile); } + +void DeviceController::onPOSTInformationReady(const QString &vMacEthernet, const QString &vMacWireless, const QString &vMacBluetooth) +{ + _macEthernet = vMacEthernet .trimmed(); + _macWireless = vMacWireless .trimmed(); + _macBluetooth = vMacBluetooth .trimmed(); +}