Lines Matching full:session
116 * can be applied to an SRTP or SRTCP stream. An SRTP session policy
118 * in the session.
184 * @brief represents the policy for an SRTP session.
188 * policy for an entire SRTP session. Each element contains the SRTP
237 * @brief An srtp_t points to an SRTP session structure.
240 * an SRTP session. This datatype is intentially opaque in
243 * An SRTP session consists of all of the traffic sent to the RTP and
245 * Audio/Video Profile). A session can be viewed as a set of SRTP
260 * session by a single participant. A session can be viewed as
364 * @brief srtp_create() allocates and initializes an SRTP session.
366 * The function call srtp_create(session, policy, key) allocates and
367 * initializes an SRTP session context, applying the given policy and
370 * @param session is the SRTP session to which the policy is to be added.
373 * for the session. The struct may be a single element, or it may be
386 srtp_create(srtp_t *session, const srtp_policy_t *policy);
391 * within a given SRTP session.
393 * The function call srtp_add_stream(session, policy) allocates and
395 * session, applying the policy given as the other argument to that
405 srtp_add_stream(srtp_t session,
412 * The function call srtp_remove_stream(session, ssrc) removes
413 * the SRTP stream with the SSRC value ssrc from the SRTP session
414 * context given by the argument session.
416 * @param session is the SRTP session from which the stream
422 * session.
431 srtp_remove_stream(srtp_t session, unsigned int ssrc);
590 * @brief srtp_dealloc() deallocates storage for an SRTP session
594 * SRTP session context s. This function should be called no more
598 * @param s is the srtp_t for the session to be deallocated.
743 * *len_ptr) using the SRTP session context ctx. If err_status_ok is
780 * by srtcp_hdr (which has length *len_ptr), using the SRTP session
857 * When an SRTP stream expires, the other streams in the same session
859 * latter case, all of the streams in the session will expire.
886 srtp_t session; /**< The session in which the event happend. */