* @param success_cb Pointer to a callback function to be called when the processing of the check list is successful
* @param stream_ptr Pointer to the media stream to be passed as a parameter to the callback function
* @return Pointer to the allocated check list
*
* A check list must be allocated for each media stream of a media session and be added to an ICE session using the ice_session_add_check_list() function.
ms_message("Finished ICE check list processing successfully!");
ice_dump_valid_list(cl);
// TODO: Call a callback function to notify the application of the end of the ICE processing for this check list and start transmitting media for this stream
cl->success_cb(cl->stream_ptr,cl);
// TODO: Check if all the check lists of the ICE session are completed