File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ namespace chip {
24
24
namespace app {
25
25
26
26
// / Callbacks for check in protocol
27
+ /* *
28
+ * @brief The application implementing an ICD client should inherit the CheckInDelegate and implement the listed callbacks
29
+ * OnCheckInComplete will be called on successful processing of a received checkIn message from the server
30
+ * OnRefreshKey will be called when the key needs to be refreshed to avoid check in counter roll over problems. On receiving
31
+ * OnRefreshKey callback, the application should generate a new key.
32
+ */
27
33
class DLL_EXPORT CheckInDelegate
28
34
{
29
35
public:
@@ -40,7 +46,7 @@ class DLL_EXPORT CheckInDelegate
40
46
* @brief Callback used to let the application know that a checkin message was received and validated and a key refresh is
41
47
* needed to avoid counter roolover problems.
42
48
*
43
- * The implementor of this function should generate a new key
49
+ * The implementer of this function should generate a new key
44
50
*
45
51
* @param[out] keyData - new key generated
46
52
*/
You can’t perform that action at this time.
0 commit comments