You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CHIP_ERROR result = idOptions.addTargetAppInfo(targetAppInfo);
65
+
if (result != CHIP_NO_ERROR)
66
+
{
67
+
ChipLogError(AppServer, "MCCastingPlayer.verifyOrEstablishConnectionWithCompletionBlock failed to add targetAppInfo: %" CHIP_ERROR_FORMAT, result.Format());
68
+
}
59
69
}
60
70
61
-
// TODO: In the following PRs. Removed desiredEndpointFilter to fix iOS app build issue. Replace desiredEndpointFilter with optional IdentificationDeclarationOptions. Add optional CommissionerDeclarationHandler callback parameter.
71
+
// TODO: In the following PRs. Add optional CommissionerDeclarationHandler callback parameter.
ChipLogError(AppServer, "CommandHandler() request %lu cgp. Selected CastingPLayer does not support the Commissioner-Generated Passcode commissioning flow", index);
sout, " request <index> Request connecting to discovered Casting Player with [index]. Usage: cast request 0\r\n");
311
+
streamer_printf(
312
+
sout, " request <index> cgp Request connecting to discovered Casting Player with [index] using the Commissioner-Generated Passcode commissioning flow. Usage: cast request 0 cgp\r\n");
* @brief Selects an IP Address to send the UDC request to.
288
239
* Prioritizes IPV4 addresses over IPV6.
@@ -294,13 +245,9 @@ class CastingPlayer : public std::enable_shared_from_this<CastingPlayer>
294
245
295
246
/**
296
247
* @brief Checks if the cachedCastingPlayer contains at least one Endpoint/TargetApp described in the desiredTargetApps list.
297
-
* @return true - cachedCastingPlayer contains at least one endpoints with matching (non-default) values as described in the
298
-
* desiredTargetApps list, false otherwise.
299
-
* @param numTargetApps Specifies the number of TargetAppInfos passed in the desiredTargetApps array.
248
+
* @return true - cachedCastingPlayer contains at least one endpoints with matching (non-default) values for vendorID and productID as described in the desiredTargetApps list, false otherwise.
0 commit comments