- Add Metered and ConvexSol (CoTURN) provider drivers with response validation and caching - Add IceCandidateManager with automatic failover and structured logging - Add IceCandidateProviderInterface and DTOs conforming to RTCIceServer format
14 lines
254 B
PHP
14 lines
254 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use App\DTOs\IceCandidatesDto;
|
|
|
|
interface IceCandidateProviderInterface
|
|
{
|
|
/**
|
|
* Retrieve the ICE candidate / TURN / STUN server configurations.
|
|
*/
|
|
public function getIceCandidates(): IceCandidatesDto;
|
|
}
|