Skip to content

Commit 3d045a7

Browse files
authored
Merge branch 'master' into feature/fix-tv-app-install-flow-and-supported-clusters
2 parents cad7283 + 181d01f commit 3d045a7

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

src/controller/CHIPDeviceController.h

+4-14
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
646646
* @brief
647647
* This function validates the Attestation Information sent by the device.
648648
*
649-
* @param[in] info Structure contatining all the required information for validating the device attestation.
649+
* @param[in] info Structure containing all the required information for validating the device attestation.
650650
*/
651651
CHIP_ERROR ValidateAttestationInfo(const Credentials::DeviceAttestationVerifier::AttestationInfo & info);
652652

@@ -667,7 +667,7 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
667667
* As a result, commissioning can advance to the next stage.
668668
*
669669
* The DevicePairingDelegate may call this method from the OnScanNetworksSuccess and OnScanNetworksFailure callbacks,
670-
* or it may call this method after obtaining network credentials using asyncronous methods (prompting user, cloud API call,
670+
* or it may call this method after obtaining network credentials using asynchronous methods (prompting user, cloud API call,
671671
* etc).
672672
*
673673
* If an error happens in the subsequent network commissioning step (either NetworkConfig or ConnectNetwork commands)
@@ -686,7 +686,7 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
686686
* using CommissioningDelegate.SetCommissioningParameters(). As a result, commissioning can advance to the next stage.
687687
*
688688
* The DevicePairingDelegate may call this method from the OnICDRegistrationInfoRequired callback, or it may call this
689-
* method after obtaining required parameters for ICD registration using asyncronous methods (like RPC call etc).
689+
* method after obtaining required parameters for ICD registration using asynchronous methods (like RPC call etc).
690690
*
691691
* When the ICD Registration completes, OnICDRegistrationComplete will be called.
692692
*
@@ -846,8 +846,6 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
846846
RendezvousParameters mRendezvousParametersForDeviceDiscoveredOverBle;
847847
#endif
848848

849-
CHIP_ERROR LoadKeyId(PersistentStorageDelegate * delegate, uint16_t & out);
850-
851849
static void OnBasicFailure(void * context, CHIP_ERROR err);
852850
static void OnBasicSuccess(void * context, const chip::app::DataModel::NullObjectType &);
853851

@@ -1004,22 +1002,14 @@ class DLL_EXPORT DeviceCommissioner : public DeviceController,
10041002
CHIP_ERROR ValidateCSR(DeviceProxy * proxy, const ByteSpan & NOCSRElements, const ByteSpan & AttestationSignature,
10051003
const ByteSpan & dac, const ByteSpan & csrNonce);
10061004

1007-
/**
1008-
* @brief
1009-
* This function processes the DAC or PAI certificate sent by the device.
1010-
*/
1011-
CHIP_ERROR ProcessCertificateChain(const ByteSpan & certificate);
1012-
10131005
/**
10141006
* @brief
10151007
* This function validates the revocation status of the DAC Chain sent by the device.
10161008
*
1017-
* @param[in] info Structure contatining all the required information for validating the device attestation.
1009+
* @param[in] info Structure containing all the required information for validating the device attestation.
10181010
*/
10191011
CHIP_ERROR CheckForRevokedDACChain(const Credentials::DeviceAttestationVerifier::AttestationInfo & info);
10201012

1021-
void HandleAttestationResult(CHIP_ERROR err);
1022-
10231013
CommissioneeDeviceProxy * FindCommissioneeDevice(NodeId id);
10241014
CommissioneeDeviceProxy * FindCommissioneeDevice(const Transport::PeerAddress & peerAddress);
10251015
void ReleaseCommissioneeDevice(CommissioneeDeviceProxy * device);

0 commit comments

Comments
 (0)