Fork me on GitHub
ice.h
Go to the documentation of this file.
1 
21 #ifndef JANUS_ICE_H
22 #define JANUS_ICE_H
23 
24 #include <glib.h>
25 #include <agent.h>
26 
27 #include "sdp.h"
28 #include "dtls.h"
29 #include "sctp.h"
30 #include "rtcp.h"
31 #include "text2pcap.h"
32 #include "utils.h"
33 #include "ip-utils.h"
34 #include "refcount.h"
35 #include "plugins/plugin.h"
36 
37 
47 void janus_ice_init(gboolean ice_lite, gboolean ice_tcp, gboolean full_trickle, gboolean ignore_mdns,
48  gboolean ipv6, gboolean ipv6_linklocal, uint16_t rtp_min_port, uint16_t rtp_max_port);
50 void janus_ice_deinit(void);
58 int janus_ice_test_stun_server(janus_network_address *addr, uint16_t port, uint16_t local_port, janus_network_address *public_addr, uint16_t *public_port);
63 int janus_ice_set_stun_server(gchar *stun_server, uint16_t stun_port);
71 int janus_ice_set_turn_server(gchar *turn_server, uint16_t turn_port, gchar *turn_type, gchar *turn_user, gchar *turn_pwd);
80 int janus_ice_set_turn_rest_api(gchar *api_server, gchar *api_key, gchar *api_method, uint api_timeout);
83 char *janus_ice_get_stun_server(void);
86 uint16_t janus_ice_get_stun_port(void);
89 char *janus_ice_get_turn_server(void);
92 uint16_t janus_ice_get_turn_port(void);
95 char *janus_ice_get_turn_rest_api(void);
100 gboolean janus_ice_is_force_relay_allowed(void);
103 void janus_ice_enable_nat_1_1(gboolean keep_private_host);
110 void janus_ice_enforce_interface(const char *ip);
114 gboolean janus_ice_is_enforced(const char *ip);
122 void janus_ice_ignore_interface(const char *ip);
126 gboolean janus_ice_is_ignored(const char *ip);
129 gboolean janus_ice_is_ice_lite_enabled(void);
132 gboolean janus_ice_is_ice_tcp_enabled(void);
135 gboolean janus_ice_is_full_trickle_enabled(void);
138 gboolean janus_ice_is_mdns_enabled(void);
141 gboolean janus_ice_is_ipv6_enabled(void);
146 #ifdef HAVE_ICE_NOMINATION
147 
149 void janus_ice_set_nomination_mode(const char *nomination);
152 const char *janus_ice_get_nomination_mode(void);
153 #endif
154 
159 void janus_ice_set_consent_freshness_enabled(gboolean enabled);
167 void janus_ice_set_keepalive_conncheck_enabled(gboolean enabled);
173 void janus_ice_set_hangup_on_failed_enabled(gboolean enabled);
179 void janus_set_min_nack_queue(uint16_t mnq);
182 uint16_t janus_get_min_nack_queue(void);
189 void janus_set_nack_optimizations_enabled(gboolean optimize);
195 void janus_set_no_media_timer(uint timer);
198 uint janus_get_no_media_timer(void);
201 void janus_set_slowlink_threshold(uint packets);
207 void janus_set_twcc_period(uint period);
210 uint janus_get_twcc_period(void);
213 void janus_set_dscp(int dscp);
216 int janus_get_dscp(void);
219 void janus_ice_set_event_stats_period(int period);
226 
229 void janus_ice_event_set_combine_media_stats(gboolean combine_media_stats_to_one_event);
233 
238 gboolean janus_is_opaqueid_in_api_enabled(void);
239 
240 
244 const gchar *janus_get_ice_state_name(gint state);
245 
246 
255 
256 #define JANUS_ICE_HANDLE_WEBRTC_PROCESSING_OFFER (1 << 0)
257 #define JANUS_ICE_HANDLE_WEBRTC_START (1 << 1)
258 #define JANUS_ICE_HANDLE_WEBRTC_READY (1 << 2)
259 #define JANUS_ICE_HANDLE_WEBRTC_STOP (1 << 3)
260 #define JANUS_ICE_HANDLE_WEBRTC_ALERT (1 << 4)
261 #define JANUS_ICE_HANDLE_WEBRTC_NEGOTIATED (1 << 5)
262 #define JANUS_ICE_HANDLE_WEBRTC_TRICKLE (1 << 7)
263 #define JANUS_ICE_HANDLE_WEBRTC_ALL_TRICKLES (1 << 8)
264 #define JANUS_ICE_HANDLE_WEBRTC_TRICKLE_SYNCED (1 << 9)
265 #define JANUS_ICE_HANDLE_WEBRTC_DATA_CHANNELS (1 << 10)
266 #define JANUS_ICE_HANDLE_WEBRTC_CLEANING (1 << 11)
267 #define JANUS_ICE_HANDLE_WEBRTC_HAS_AUDIO (1 << 12)
268 #define JANUS_ICE_HANDLE_WEBRTC_HAS_VIDEO (1 << 13)
269 #define JANUS_ICE_HANDLE_WEBRTC_GOT_OFFER (1 << 14)
270 #define JANUS_ICE_HANDLE_WEBRTC_GOT_ANSWER (1 << 15)
271 #define JANUS_ICE_HANDLE_WEBRTC_HAS_AGENT (1 << 16)
272 #define JANUS_ICE_HANDLE_WEBRTC_ICE_RESTART (1 << 17)
273 #define JANUS_ICE_HANDLE_WEBRTC_RESEND_TRICKLES (1 << 18)
274 #define JANUS_ICE_HANDLE_WEBRTC_RFC4588_RTX (1 << 19)
275 #define JANUS_ICE_HANDLE_WEBRTC_NEW_DATACHAN_SDP (1 << 20)
276 #define JANUS_ICE_HANDLE_WEBRTC_E2EE (1 << 21)
277 
278 
280 typedef enum janus_media_type {
289 const char *janus_media_type_str(janus_media_type type);
290 
293 typedef struct janus_ice_stats_info {
295  guint32 packets;
297  guint64 bytes;
301  gint64 updated;
305  guint32 nacks;
307 
310 typedef struct janus_ice_stats {
316 
320 void janus_ice_notify_hangup(janus_ice_handle *handle, const char *reason);
321 
322 
326 gboolean janus_plugin_session_is_alive(janus_plugin_session *plugin_session);
327 
328 
330 typedef struct janus_seq_info {
331  gint64 ts;
332  guint16 seq;
333  guint16 state;
338 enum {
343 };
344 
345 
349  void *session;
351  guint64 handle_id;
353  char *opaque_id;
355  char *token;
357  gint64 created;
359  void *app;
365  gint cdone;
367  GMainContext *mainctx;
369  GMainLoop *mainloop;
373  GThread *thread;
377  NiceAgent *agent;
383  gboolean controlling;
385  gchar *pc_mid;
387  guint stream_id;
391  gchar *rtp_profile;
393  gchar *local_sdp;
395  gchar *remote_sdp;
397  const gchar *hangup_reason;
401  GAsyncQueue *queued_candidates;
403  GAsyncQueue *queued_packets;
411  volatile gint dump_packets;
417  volatile gint has_pc;
419  volatile gint closepc;
421  volatile gint destroyed;
424 };
425 
431  guint stream_id;
435  gboolean cdone;
437  guint state;
439  gint64 gathered;
441  gint64 connected;
443  GSList *candidates;
451  gboolean process_started;
453  GSource *icestate_source;
457  GSource *dtlsrt_source;
495  uint32_t remb_bitrate;
505  gchar *ruser;
507  gchar *rpass;
509  GHashTable *media;
511  GHashTable *media_byssrc;
513  GHashTable *media_bymid;
518  GHashTable *media_bytype;
520  GHashTable *payload_types;
522  GHashTable *clock_rates;
524  GHashTable *rtx_payload_types;
528  GQueue *nacks_queue;
530  gboolean noerrorlog;
532  volatile gint too_large;
536  volatile gint destroyed;
539 };
540 
541 #define LAST_SEQS_MAX_LEN 160
542 
549  int mindex;
551  char *mid;
555  guint32 ssrc;
557  guint32 ssrc_rtx;
563  char *rid[3];
565  gboolean disabled_rid[3];
567  gboolean rids_hml;
569  gboolean legacy_rid;
577  GHashTable *rtx_payload_types;
579  GHashTable *clock_rates;
583  char *codec;
585  gboolean (* video_is_keyframe)(const char* buffer, int len);
587  gboolean send, recv;
591  uint16_t nack_queue_ms;
593  GHashTable *rtx_nacked[3];
597  gint64 first_ntp_ts[3];
599  guint32 first_rtp_ts[3];
601  gint64 last_ntp_ts;
603  guint32 last_rtp_ts;
605  gboolean do_nacks;
609  GHashTable *retransmit_seqs;
611  guint16 rtx_seq_number;
627  gboolean noerrorlog;
631  volatile gint destroyed;
634 };
641 
647  gint64 received;
649  char *transaction;
652 };
653 
656 
661 janus_ice_trickle *janus_ice_trickle_new(const char *transaction, json_t *candidate);
667 gint janus_ice_trickle_parse(janus_ice_handle *handle, json_t *candidate, const char **error);
672 
673 
676 
682 janus_ice_handle *janus_ice_handle_create(void *core_session, const char *opaque_id, const char *token);
691 gint janus_ice_handle_attach_plugin(void *core_session, janus_ice_handle *handle, janus_plugin *plugin, int loop_index);
696 gint janus_ice_handle_destroy(void *core_session, janus_ice_handle *handle);
700 void janus_ice_webrtc_hangup(janus_ice_handle *handle, const char *reason);
705 
706 
709 
728 void janus_ice_send_pli_stream(janus_ice_handle *handle, int mindex);
732 void janus_ice_send_remb(janus_ice_handle *handle, uint32_t bitrate);
740 void janus_ice_incoming_data(janus_ice_handle *handle, char *label, char *protocol, gboolean textdata, char *buffer, int length);
745 void janus_ice_relay_sctp(janus_ice_handle *handle, char *buffer, int length);
753 
754 
757 
764 int janus_ice_setup_local(janus_ice_handle *handle, gboolean offer, gboolean trickle, janus_dtls_role dtls_role);
770 void janus_ice_candidates_to_sdp(janus_ice_handle *handle, janus_sdp_mline *mline, guint stream_id, guint component_id);
774 void janus_ice_add_remote_candidate(janus_ice_handle *handle, NiceCandidate *c);
779 void janus_ice_setup_remote_candidates(janus_ice_handle *handle, guint stream_id, guint component_id);
786 void janus_ice_restart(janus_ice_handle *handle);
791 
792 
798 void janus_ice_set_static_event_loops(int loops, gboolean allow_api);
812 
813 #endif
guint srtp_errors_count
Count of the recent SRTP replay errors, in order to avoid spamming the logs.
Definition: ice.h:405
void janus_ice_notify_hangup(janus_ice_handle *handle, const char *reason)
Quick helper method to notify a WebRTC hangup through the Janus API.
Definition: ice.c:896
gint64 connected
Monotonic time of when ICE has successfully connected.
Definition: ice.h:441
janus_ice_handle * handle
Janus ICE handle this stream belongs to.
Definition: ice.h:429
void janus_ice_resend_trickles(janus_ice_handle *handle)
Method to resend all the existing candidates via trickle (e.g., after an ICE restart) ...
Definition: ice.c:3861
GSource * rtp_source
GLib sources for outgoing traffic, recurring RTCP, and stats (and optionally TWCC) ...
Definition: ice.h:375
const gchar * hangup_reason
Reason this handle has been hung up.
Definition: ice.h:397
gchar * ruser
The ICE username for this stream.
Definition: ice.h:505
json_t * candidate
JSON object of the trickle candidate(s)
Definition: ice.h:651
Janus plugin data message.
Definition: plugin.h:652
gboolean janus_ice_is_hangup_on_failed_enabled(void)
Method to check whether ICE failures will result in immediate hangups.
Definition: ice.c:186
int opusred_pt
opus/red payload type, if enabled
Definition: ice.h:575
GHashTable * clock_rates
Mapping of payload types to their clock rates, as advertised in the SDP.
Definition: ice.h:579
GSList * local_candidates
GLib list of local candidates for this component (summary)
Definition: ice.h:445
janus_flags webrtc_flags
Mask of WebRTC-related flags for this handle.
Definition: ice.h:363
GSList * remote_candidates
GLib list of remote candidates for this component (summary)
Definition: ice.h:447
void janus_ice_relay_data(janus_ice_handle *handle, janus_plugin_data *packet)
Core SCTP/DataChannel callback, called when a plugin has data to send to a peer.
gint64 nack_sent_log_ts
Last time a log message about sending NACKs was printed.
Definition: ice.h:617
IP address related utility functions (headers)
gboolean janus_ice_is_full_trickle_enabled(void)
Method to check whether full-trickle support is enabled or not.
Definition: ice.c:100
SCTP processing for data channels (headers)
gboolean janus_ice_is_consent_freshness_enabled(void)
Method to check whether consent fresnhess will be enabled in ICE.
Definition: ice.c:158
gint abs_send_time_ext_id
Absolute Send Time ext ID.
Definition: ice.h:473
guint32 packets
Packets sent or received.
Definition: ice.h:295
gchar * local_sdp
SDP generated locally (just for debugging purposes)
Definition: ice.h:393
void janus_set_slowlink_threshold(uint packets)
Method to modify the slowlink-threshold property (i.e., the number of lost packets per seconds that s...
Definition: ice.c:587
janus_dtls_role dtls_role
DTLS role of the server for this stream.
Definition: ice.h:497
int janus_get_dscp(void)
Method to get the current DSCP value (see above)
Definition: ice.c:622
GHashTable * rtx_payload_types
Mapping of rtx payload types to actual media-related packet types.
Definition: ice.h:577
gboolean noerrorlog
Helper flag to avoid flooding the console with the same error all over again.
Definition: ice.h:530
Reference counter mechanism.
struct janus_seq_info * prev
Definition: ice.h:335
gsize janus_flags
Janus flags container.
Definition: utils.h:172
struct json_t json_t
Definition: plugin.h:236
guint32 last_rtp_ts
Last sent RTP timestamp.
Definition: ice.h:603
void janus_seq_list_free(janus_seq_info **head)
Definition: ice.c:737
Janus media statistics container.
Definition: ice.h:310
uint16_t janus_ice_get_stun_port(void)
Method to get the STUN server port.
Definition: ice.c:49
janus_seq_info * last_seqs[3]
List of recently received sequence numbers (as a support to NACK generation, for each simulcast SSRC)...
Definition: ice.h:621
uint16_t janus_get_min_nack_queue(void)
Method to get the current min NACK value (i.e., the minimum time window of packets per handle to stor...
Definition: ice.c:675
janus_refcount ref
Reference counter for this instance.
Definition: ice.h:633
gboolean janus_ice_is_ice_lite_enabled(void)
Method to check whether ICE Lite mode is enabled or not (still WIP)
Definition: ice.c:88
int janus_ice_set_stun_server(gchar *stun_server, uint16_t stun_port)
Method to force Janus to use a STUN server when gathering candidates.
Definition: ice.c:1206
struct janus_seq_info janus_seq_info
A helper struct for determining when to send NACKs.
gchar * pc_mid
Main mid.
Definition: ice.h:385
gint abs_capture_time_ext_id
Absolute Capture Time ext ID.
Definition: ice.h:475
int mindex
Index of this medium in the media list.
Definition: ice.h:549
volatile gint closepc
Whether a close_pc was requested recently on the PeerConnection.
Definition: ice.h:419
GList * payload_types
List of payload types we can expect.
Definition: ice.h:573
gint64 agent_started
Monotonic time of when the ICE agent has been started (remote credentials set)
Definition: ice.h:381
void janus_ice_relay_rtcp(janus_ice_handle *handle, janus_plugin_rtcp *packet)
Core RTCP callback, called when a plugin has an RTCP message to send to a peer.
Definition: ice.c:5171
void janus_ice_peerconnection_destroy(janus_ice_peerconnection *pc)
Method to only free resources related to a specific Webrtc PeerConnection allocated by a Janus ICE ha...
Definition: ice.c:1738
gint dependencydesc_ext_id
Dependency descriptor extension ID.
Definition: ice.h:471
GSource * stats_source
Definition: ice.h:375
NiceAgent * agent
libnice ICE agent
Definition: ice.h:377
GHashTable * pending_nacked_cleanup
Map of the pending NACKed cleanup callback.
Definition: ice.h:595
struct janus_ice_stats janus_ice_stats
Janus media statistics container.
GAsyncQueue * queued_candidates
Queue of remote candidates that still need to be processed.
Definition: ice.h:401
janus_ice_stats_info info[3]
Media stats info (considering we may be simulcasting)
Definition: ice.h:312
char * janus_ice_get_turn_rest_api(void)
Method to get the specified TURN REST API backend, if any.
Definition: ice.c:69
Definition: ice.h:340
void janus_set_dscp(int dscp)
Method to modify the DSCP value to set, which is disabled by default.
Definition: ice.c:616
gint rid_ext_id
RTP Stream extension ID, and the related rtx one.
Definition: ice.h:463
GQueue * nacks_queue
Helper queue for storing requested packets from NACKs.
Definition: ice.h:528
guint state
libnice ICE component state
Definition: ice.h:437
Janus plugin RTP packet.
Definition: plugin.h:596
char * rid[3]
Array of RTP Stream IDs (for simulcasting, if enabled)
Definition: ice.h:563
gchar * remote_fingerprint
Hashed fingerprint of the peer&#39;s certificate, as parsed in SDP.
Definition: ice.h:503
gboolean send
Media direction.
Definition: ice.h:587
GMutex janus_mutex
Janus mutex implementation.
Definition: mutex.h:73
char * mid
Media ID.
Definition: ice.h:551
SDP m-line representation.
Definition: sdp-utils.h:131
Plugin-Core communication (implementation)
void janus_ice_webrtc_hangup(janus_ice_handle *handle, const char *reason)
Method to only hangup (e.g., DTLS alert) the WebRTC PeerConnection allocated by a Janus ICE handle...
Definition: ice.c:1629
void janus_ice_set_event_stats_period(int period)
Method to modify the event handler statistics period (i.e., the number of seconds that should pass be...
Definition: ice.c:394
GHashTable * rtx_nacked[3]
Map(s) of the NACKed packets (to track retransmissions and avoid duplicates)
Definition: ice.h:593
void janus_enable_opaqueid_in_api(void)
Method to enable opaque ID in Janus API responses/events.
Definition: ice.c:194
void janus_ice_restart(janus_ice_handle *handle)
Method to restart ICE and the connectivity checks.
Definition: ice.c:3851
uint janus_get_no_media_timer(void)
Method to get the current no-media event timer (see above)
Definition: ice.c:576
gboolean janus_plugin_session_is_alive(janus_plugin_session *plugin_session)
Quick helper method to check if a plugin session associated with a Janus handle is still valid...
Definition: ice.c:766
gint64 icefailed_detected
Time of when we first detected an ICE failed (we&#39;ll need this for the timer above) ...
Definition: ice.h:455
gboolean janus_ice_is_keepalive_conncheck_enabled(void)
Method to check whether connectivity checks will be used as keepalives.
Definition: ice.c:174
void janus_ice_add_remote_candidate(janus_ice_handle *handle, NiceCandidate *c)
Method to queue a remote candidate for processing.
Definition: ice.c:3524
gboolean janus_ice_is_ignored(const char *ip)
Method to check whether an interface/IP is currently in the ignore list for ICE (that is...
Definition: ice.c:372
char * codec
Codec used in this medium.
Definition: ice.h:583
guint stream_id
libnice ICE stream ID
Definition: ice.h:431
gboolean janus_ice_is_ipv6_enabled(void)
Method to check whether IPv6 candidates are enabled/supported or not.
Definition: ice.c:113
guint sl_lost_count
Last known count of lost packets (for slow_link)
Definition: ice.h:314
gint last_event_stats
Count of how many seconds passed since the last stats passed to event handlers.
Definition: ice.h:409
GSource * icestate_source
Timer to check when we should consider ICE as failed.
Definition: ice.h:453
Instance of a text2pcap recorder.
Definition: text2pcap.h:49
char * mstid
Definition: ice.h:553
guint16 seq
Definition: ice.h:332
gint64 retransmit_log_ts
Last time a log message about sending retransmits was printed.
Definition: ice.h:613
janus_ice_handle * handle
Janus ICE handle this trickle candidate belongs to.
Definition: ice.h:645
GThread * thread
GLib thread for the handle and libnice.
Definition: ice.h:373
Definition: refcount.h:78
janus_ice_handle * janus_ice_handle_create(void *core_session, const char *opaque_id, const char *token)
Method to create a new Janus ICE handle.
Definition: ice.c:1357
guint32 ssrc_rtx
Retransmission SSRC of the server for this medium.
Definition: ice.h:557
guint16 transport_wide_cc_cycles
Transport wide cc transport seq num wrap cycles.
Definition: ice.h:489
int janus_ice_setup_local(janus_ice_handle *handle, gboolean offer, gboolean trickle, janus_dtls_role dtls_role)
Method to locally set up the ICE candidates (initialization and gathering)
Definition: ice.c:3580
janus_ice_stats out_stats
Stats for outgoing data (audio/video/data)
Definition: ice.h:625
gint cdone
Number of gathered candidates.
Definition: ice.h:365
guint16 rtx_seq_number
Current sequence number for the RFC4588 rtx SSRC session.
Definition: ice.h:611
gboolean janus_ice_event_get_combine_media_stats(void)
Method to retrieve whether media statistic events shall be dispatched combined or in single events...
Definition: ice.c:406
void janus_ice_relay_rtp(janus_ice_handle *handle, janus_plugin_rtp *packet)
Core RTP callback, called when a plugin has an RTP packet to send to a peer.
Definition: ice.c:5099
GHashTable * media_byssrc
GLib hash table of media (SSRCs are the keys)
Definition: ice.h:511
gchar * rtp_profile
RTP profile set by caller (so that we can match it)
Definition: ice.h:391
json_t * janus_ice_static_event_loops_info(void)
Helper method to return a summary of the static loops activity.
Definition: ice.c:288
TURN REST API client.
char * transaction
Janus API transaction ID of the original trickle request.
Definition: ice.h:649
Helper to handle pending trickle candidates (e.g., when we&#39;re still waiting for an offer) ...
Definition: ice.h:643
gboolean disabled_rid[3]
Which simulcast rids are currently disabled, as per the latest negotiation.
Definition: ice.h:565
struct janus_seq_info * next
Definition: ice.h:334
void janus_ice_incoming_data(janus_ice_handle *handle, char *label, char *protocol, gboolean textdata, char *buffer, int length)
Plugin SCTP/DataChannel callback, called by the SCTP stack when when there&#39;s data for a plugin...
Definition: ice.c:3295
gboolean janus_ice_is_ice_tcp_enabled(void)
Method to check whether ICE-TCP support is enabled/supported or not (still WIP)
Definition: ice.c:94
gint64 created
Monotonic time of when the handle has been created.
Definition: ice.h:357
const gchar * janus_get_ice_state_name(gint state)
Helper method to get a string representation of a libnice ICE state.
Definition: ice.c:1329
void janus_ice_ignore_interface(const char *ip)
Method to add an interface/IP to the ignore list for ICE (that is, don&#39;t gather candidates) ...
Definition: ice.c:361
gchar * rpass
The ICE password for this stream.
Definition: ice.h:507
void janus_ice_relay_sctp(janus_ice_handle *handle, char *buffer, int length)
Core SCTP/DataChannel callback, called by the SCTP stack when when there&#39;s data to send...
Definition: ice.c:5228
GHashTable * rtx_payload_types_rev
Reverse mapping of rtx payload types to actual media-related packet types.
Definition: ice.h:526
void janus_ice_dtls_handshake_done(janus_ice_handle *handle)
Callback to be notified when the DTLS handshake for a specific component has been completed...
Definition: ice.c:5282
janus_mutex mutex
Mutex to lock/unlock this stream.
Definition: ice.h:534
janus_media_type
Janus media types.
Definition: ice.h:280
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition: ice.h:421
gint64 last_ntp_ts
Last sent NTP timestamp.
Definition: ice.h:601
GSource * dtlsrt_source
Re-transmission timer for DTLS.
Definition: ice.h:457
void janus_ice_setup_remote_candidates(janus_ice_handle *handle, guint stream_id, guint component_id)
Method to handle remote candidates and start the connectivity checks.
Definition: ice.c:3538
int janus_ice_set_turn_rest_api(gchar *api_server, gchar *api_key, gchar *api_method, uint api_timeout)
Method to force Janus to contact a TURN REST API server to get a TURN service to use when gathering c...
Definition: ice.c:1302
uint16_t nack_queue_ms
Size of the NACK queue (in ms), dynamically updated per the RTT.
Definition: ice.h:591
GMainLoop * mainloop
GLib loop for the handle and libnice.
Definition: ice.h:369
guint transport_wide_cc_feedback_count
Transport wide cc rtp ext ID.
Definition: ice.h:491
The plugin session and callbacks interface.
Definition: plugin.h:252
gboolean legacy_rid
Whether we should use the legacy simulcast syntax (a=simulcast:recv rid=..) or the proper one (a=simu...
Definition: ice.h:569
janus_refcount ref
Reference counter for this instance.
Definition: ice.h:423
GSource * twcc_source
Definition: ice.h:375
janus_plugin_session * app_handle
Opaque core/plugin session pointer.
Definition: ice.h:361
guint retransmit_recent_cnt
Number of retransmitted packets since last log message.
Definition: ice.h:615
uint janus_get_slowlink_threshold(void)
Method to get the current slowlink-threshold value (see above)
Definition: ice.c:594
RTP context, in order to make sure SSRC changes result in coherent seq/ts increases.
Definition: rtp.h:308
guint32 ssrc_peer_rtx_orig[3]
Definition: ice.h:561
void janus_ice_set_consent_freshness_enabled(gboolean enabled)
Method to enable/disable consent freshness in PeerConnections.
Definition: ice.c:145
gboolean(* video_is_keyframe)(const char *buffer, int len)
Pointer to function to check if a packet is a keyframe (depends on negotiated codec; video only) ...
Definition: ice.h:585
janus_mutex mutex
Mutex to lock/unlock this medium.
Definition: ice.h:629
Definition: ice.h:339
RTCP processing (headers)
A single media in a PeerConnection.
Definition: ice.h:543
gint64 updated
Time we last updated the last second counter.
Definition: ice.h:301
uint16_t janus_ice_get_turn_port(void)
Method to get the TURN server port.
Definition: ice.c:63
GMainContext * mainctx
GLib context for the handle and libnice.
Definition: ice.h:367
guint32 transport_wide_cc_last_feedback_seq_num
Last transport wide seq num sent on feedback.
Definition: ice.h:487
void janus_ice_candidates_to_sdp(janus_ice_handle *handle, janus_sdp_mline *mline, guint stream_id, guint component_id)
Method to add local candidates to a janus_sdp SDP object representation.
Definition: ice.c:3470
uint janus_get_twcc_period(void)
Method to get the current TWCC period (see above)
Definition: ice.c:610
Janus handle WebRTC PeerConnection.
Definition: ice.h:427
guint32 ssrc_peer_rtx_new[3]
Definition: ice.h:561
GHashTable * retransmit_seqs
HashTable of retransmittable sequence numbers, in case we receive NACKs.
Definition: ice.h:609
guint stream_id
ICE Stream ID.
Definition: ice.h:387
gint64 ts
Definition: ice.h:331
void janus_ice_deinit(void)
ICE stuff de-initialization.
Definition: ice.c:1066
gboolean janus_is_opaqueid_in_api_enabled(void)
Method to check whether opaque ID have to be added to Janus API responses/events. ...
Definition: ice.c:197
janus_ice_stats dtls_in_stats
Data exchanged for DTLS handshakes and messages.
Definition: ice.h:499
volatile gint has_pc
Atomic flag to check whether a PeerConnection was established.
Definition: ice.h:417
janus_ice_peerconnection_medium * janus_ice_peerconnection_medium_create(janus_ice_handle *handle, janus_media_type type)
Method to quickly create a medium to be added to a handle PeerConnection.
Definition: ice.c:1841
gint mid_ext_id
SDES mid RTP extension ID.
Definition: ice.h:461
GSource * rtcp_source
Definition: ice.h:375
janus_ice_peerconnection * pc
WebRTC PeerConnection this m-line belongs to.
Definition: ice.h:545
gint payload_type
RTP payload types for this medium.
Definition: ice.h:581
char * remote_msid
Definition: ice.h:553
gchar * remote_sdp
SDP received by the peer (just for debugging purposes)
Definition: ice.h:395
A helper struct for determining when to send NACKs.
Definition: ice.h:330
char * remote_mstid
Definition: ice.h:553
janus_rtp_switching_context rtp_ctx[3]
RTP switching context(s) in case of renegotiations (audio+video and/or simulcast) ...
Definition: ice.h:571
char * janus_ice_get_stun_server(void)
Method to get the STUN server IP address.
Definition: ice.c:46
void janus_set_nack_optimizations_enabled(gboolean optimize)
Method to enable/disable the NACK optimizations on outgoing keyframes: when enabled, the NACK buffer for a PeerConnection is cleaned any time Janus sends a keyframe, as any missing packet won&#39;t be needed since the keyframe will allow the media recipient to still restore a complete image anyway. Since this optimization seems to cause some issues in some edge cases, it&#39;s disabled by default.
Definition: ice.c:660
int janus_ice_test_stun_server(janus_network_address *addr, uint16_t port, uint16_t local_port, janus_network_address *public_addr, uint16_t *public_port)
Method to check whether a STUN server is reachable.
Definition: ice.c:1072
void * app
Opaque application (plugin) pointer.
Definition: ice.h:359
void janus_ice_event_set_combine_media_stats(gboolean combine_media_stats_to_one_event)
Method to define whether the media stats shall be dispatched in one event (true) or in dedicated sing...
Definition: ice.c:403
GQueue * retransmit_buffer
List of previously sent janus_rtp_packet RTP packets, in case we receive NACKs.
Definition: ice.h:607
int janus_ice_get_event_stats_period(void)
Method to get the current event handler statistics period (see above)
Definition: ice.c:397
DTLS/SRTP processing (headers)
void janus_ice_trickle_destroy(janus_ice_trickle *trickle)
Helper method to destroy a janus_ice_trickle instance.
Definition: ice.c:1001
gboolean notified_lastsec
Whether or not we notified about lastsec issues already.
Definition: ice.h:303
char * msid
Media Stream ID info.
Definition: ice.h:553
gint last_srtp_summary
Definition: ice.h:407
Definition: ice.h:342
Janus ICE handle.
Definition: ice.h:347
gint playoutdelay_ext_id
Playout delay extension ID.
Definition: ice.h:469
GHashTable * media
GLib hash table of media (m-line indexes are the keys)
Definition: ice.h:509
gint audiolevel_ext_id
Audio levels extension ID.
Definition: ice.h:465
GHashTable * media_bytype
GLib hash table of media (media types are the keys)
Definition: ice.h:518
janus_refcount ref
Reference counter for this instance.
Definition: ice.h:538
gboolean recv
Definition: ice.h:587
gchar * selected_pair
String representation of the selected pair as notified by libnice (foundations)
Definition: ice.h:449
char * opaque_id
Opaque identifier, e.g., to provide inter-handle relationships to external tools. ...
Definition: ice.h:353
gboolean janus_ice_is_ipv6_linklocal_enabled(void)
Method to check whether IPv6 link-local candidates will be gathered or not.
Definition: ice.c:117
int janus_ice_set_turn_server(gchar *turn_server, uint16_t turn_port, gchar *turn_type, gchar *turn_user, gchar *turn_pwd)
Method to force Janus to use a TURN server when gathering candidates.
Definition: ice.c:1252
struct janus_ice_stats_info janus_ice_stats_info
Janus media statistics.
gboolean controlling
ICE role (controlling or controlled)
Definition: ice.h:383
janus_media_type type
Type of this medium.
Definition: ice.h:547
void janus_ice_send_pli_stream(janus_ice_handle *handle, int mindex)
Helper core callback, called when a plugin wants to send a RTCP PLI to a single video stream of a pee...
Definition: ice.c:5189
Janus media statistics.
Definition: ice.h:293
void janus_ice_allow_force_relay(void)
Method to enable applications to force Janus to use TURN.
Definition: ice.c:79
int janus_ice_get_peerconnection_num(void)
Method to get the number of active PeerConnection (for stats)
Definition: ice.c:412
void janus_ice_notify_data_ready(janus_ice_handle *handle)
Plugin SCTP/DataChannel callback, called by the SCTP stack when data can be written.
Definition: ice.c:5256
void * session
Opaque pointer to the core/peer session.
Definition: ice.h:349
guint32 nacks
Number of NACKs sent or received.
Definition: ice.h:305
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition: ice.h:536
janus_text2pcap * text2pcap
In case this session must be saved to text2pcap, the instance to dump packets to. ...
Definition: ice.h:413
void janus_ice_send_remb(janus_ice_handle *handle, uint32_t bitrate)
Helper core callback, called when a plugin wants to send a RTCP REMB to a peer.
Definition: ice.c:5198
guint32 transport_wide_cc_last_seq_num
Last received transport wide seq num.
Definition: ice.h:485
janus_ice_stats dtls_out_stats
Definition: ice.h:499
guint32 ssrc_peer_orig[3]
Definition: ice.h:559
Janus DTLS-SRTP handle.
Definition: dtls.h:66
Definition: ice.h:284
janus_mutex mutex
Mutex to lock/unlock the ICE session.
Definition: ice.h:415
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition: ice.h:631
volatile gint dump_packets
Flag to decide whether or not packets need to be dumped to a text2pcap file.
Definition: ice.h:411
guint64 bytes
Bytes sent or received.
Definition: ice.h:297
gint janus_ice_trickle_parse(janus_ice_handle *handle, json_t *candidate, const char **error)
Helper method to parse trickle candidates.
Definition: ice.c:939
gboolean rids_hml
Whether the order of the rids in the SDP will be h-m-l (TRUE) or l-m-h (FALSE)
Definition: ice.h:567
gboolean noerrorlog
Helper flag to avoid flooding the console with the same error all over again.
Definition: ice.h:627
Definition: ice.h:281
guint nack_sent_recent_cnt
Number of NACKs sent since last log message.
Definition: ice.h:619
void janus_ice_set_static_event_loops(int loops, gboolean allow_api)
Method to configure the static event loops mechanism at startup.
Definition: ice.c:248
janus_dtls_srtp * dtls
DTLS-SRTP stack.
Definition: ice.h:459
gint transport_wide_cc_ext_id
Transport wide cc rtp ext ID.
Definition: ice.h:481
gint64 gathered
Monotonic time of when gathering has completed.
Definition: ice.h:439
Internal RTCP state context (for RR/SR)
Definition: rtcp.h:228
Structure to hold network addresses in a tagged union which should be IPv4 and IPv6 compatible...
Definition: ip-utils.h:53
gint videoorientation_ext_id
Video orientation extension ID.
Definition: ice.h:467
GHashTable * clock_rates
Mapping of payload types to their clock rates, as advertised in the SDP.
Definition: ice.h:522
gboolean janus_ice_is_loop_indication_allowed(void)
Method to check whether loop indication via API is allowed.
Definition: ice.c:245
Janus plugin RTCP packet.
Definition: plugin.h:628
void janus_ice_set_keepalive_conncheck_enabled(gboolean enabled)
Method to enable/disable connectivity checks as keepalives for PeerConnections.
Definition: ice.c:164
guint32 ssrc_peer_temp
Definition: ice.h:559
guint32 bytes_lastsec
Bytes sent or received in the last second.
Definition: ice.h:299
void janus_ice_set_hangup_on_failed_enabled(gboolean enabled)
Method to enable/disable immediate hangups of PeerConnectionss on ICE failures.
Definition: ice.c:180
gint64 first_ntp_ts[3]
First received NTP timestamp.
Definition: ice.h:597
gboolean janus_is_nack_optimizations_enabled(void)
Method to check whether NACK optimizations on outgoing keyframes are enabled or not.
Definition: ice.c:663
char * token
Token that was used to attach the handle, if required.
Definition: ice.h:355
guint32 first_rtp_ts[3]
First received RTP timestamp.
Definition: ice.h:599
GHashTable * payload_types
List of payload types we can expect.
Definition: ice.h:520
guint64 handle_id
Handle identifier, guaranteed to be non-zero.
Definition: ice.h:351
volatile gint too_large
Flag to count how many too large packets we discarded, if any.
Definition: ice.h:532
guint32 ssrc_peer_rtx[3]
Retransmissions SSRC(s) of the peer for this medium (may be simulcasting)
Definition: ice.h:561
Plugin-Gateway session mapping.
Definition: plugin.h:239
gint64 agent_created
Monotonic time of when the ICE agent has been created.
Definition: ice.h:379
const char * janus_media_type_str(janus_media_type type)
Helper method to get the string associated to a janus_media_mtype value.
Definition: ice.c:487
janus_rtcp_context * rtcp_ctx[3]
RTCP context(s) for the medium (may be simulcasting)
Definition: ice.h:589
gboolean do_nacks
Whether we should do NACKs (in or out) for this medium.
Definition: ice.h:605
GAsyncQueue * queued_packets
Queue of events in the loop and outgoing packets to send.
Definition: ice.h:403
void janus_ice_enable_nat_1_1(gboolean keep_private_host)
Helper method to force Janus to overwrite all host candidates with the public IP. ...
Definition: ice.c:325
gint rtx_payload_type
Definition: ice.h:581
GList * pending_trickles
List of pending trickle candidates (those we received before getting the JSEP offer) ...
Definition: ice.h:399
int janus_ice_get_static_event_loops(void)
Method to return the number of static event loops, if enabled.
Definition: ice.c:242
void janus_ice_enforce_interface(const char *ip)
Method to add an interface/IP to the enforce list for ICE (that is, only gather candidates from these...
Definition: ice.c:334
void janus_set_min_nack_queue(uint16_t mnq)
Method to modify the min NACK value (i.e., the minimum time window of packets per handle to store for...
Definition: ice.c:668
uint32_t remb_bitrate
Latest REMB feedback we received.
Definition: ice.h:495
GSList * transport_wide_received_seq_nums
GLib list of transport wide cc stats in reverse received order.
Definition: ice.h:493
guint16 transport_wide_cc_out_seq_num
Last sent transport wide seq num.
Definition: ice.h:483
GSList * candidates
GLib list of libnice remote candidates for this component.
Definition: ice.h:443
gint64 received
Monotonic time of when this trickle candidate has been received.
Definition: ice.h:647
void janus_set_twcc_period(uint period)
Method to modify the TWCC feedback period (i.e., how often TWCC feedback is sent back to media sender...
Definition: ice.c:601
gboolean janus_ice_is_mdns_enabled(void)
Method to check whether mDNS resolution is enabled or not.
Definition: ice.c:106
guint32 ssrc
SSRC of the server for this medium.
Definition: ice.h:555
SDP processing (headers)
void janus_ice_init(gboolean ice_lite, gboolean ice_tcp, gboolean full_trickle, gboolean ignore_mdns, gboolean ipv6, gboolean ipv6_linklocal, uint16_t rtp_min_port, uint16_t rtp_max_port)
ICE stuff initialization.
Definition: ice.c:1014
gboolean do_transport_wide_cc
Whether we do transport wide cc.
Definition: ice.h:479
GHashTable * media_bymid
GLib hash table of media (mids are the keys)
Definition: ice.h:513
gint janus_ice_handle_destroy(void *core_session, janus_ice_handle *handle)
Method to destroy a Janus ICE handle.
Definition: ice.c:1506
gint videolayers_ext_id
Video Layers Allocation ext ID.
Definition: ice.h:477
gint janus_ice_handle_attach_plugin(void *core_session, janus_ice_handle *handle, janus_plugin *plugin, int loop_index)
Method to attach a Janus ICE handle to a plugin.
Definition: ice.c:1393
gboolean janus_ice_is_enforced(const char *ip)
Method to check whether an interface is currently in the enforce list for ICE (that is...
Definition: ice.c:342
gboolean janus_ice_is_force_relay_allowed(void)
Method to check whether applications are allowed to force Janus to use TURN.
Definition: ice.c:82
guint component_id
libnice ICE component ID
Definition: ice.h:433
guint16 state
Definition: ice.h:333
Dumping of RTP/RTCP packets to text2pcap or pcap format (headers)
char * janus_ice_get_turn_server(void)
Method to get the TURN server IP address.
Definition: ice.c:60
gint last_srtp_error
Count of the recent SRTP replay errors, in order to avoid spamming the logs.
Definition: ice.h:407
Definition: ice.h:341
void janus_set_no_media_timer(uint timer)
Method to modify the no-media event timer (i.e., the number of seconds where no media arrives before ...
Definition: ice.c:569
void * static_event_loop
In case static event loops are used, opaque pointer to the loop.
Definition: ice.h:371
void janus_ice_notify_media_stopped(janus_ice_handle *handle)
Core SDP callback, called by the SDP stack when a stream has been paused by a negotiation.
Definition: ice.c:5270
guint32 ssrc_peer[3]
SSRC(s) of the peer for this medium (may be simulcasting)
Definition: ice.h:559
guint32 ssrc_peer_new[3]
Definition: ice.h:559
void janus_ice_send_pli(janus_ice_handle *handle)
Helper core callback, called when a plugin wants to send a RTCP PLI to a peer.
Definition: ice.c:5175
gboolean process_started
Whether the setup of remote candidates for this component has started or not.
Definition: ice.h:451
gint ridrtx_ext_id
Definition: ice.h:463
void janus_ice_stop_static_event_loops(void)
Method to stop all the static event loops, if enabled.
Definition: ice.c:305
Definition: ice.h:283
Definition: ice.h:282
janus_dtls_role
DTLS roles.
Definition: dtls.h:51
janus_ice_stats in_stats
Stats for incoming data (audio/video/data)
Definition: ice.h:623
janus_ice_trickle * janus_ice_trickle_new(const char *transaction, json_t *candidate)
Helper method to allocate a janus_ice_trickle instance.
Definition: ice.c:928
GHashTable * rtx_payload_types
Mapping of rtx payload types to actual media-related packet types.
Definition: ice.h:524
janus_ice_peerconnection * pc
WebRTC PeerConnection, if any.
Definition: ice.h:389
guint32 bytes_lastsec_temp
Definition: ice.h:299
gboolean cdone
Whether this stream is ready to be used.
Definition: ice.h:435
gchar * remote_hashing
Hashing algorithm used by the peer for the DTLS certificate (e.g., "SHA-256")
Definition: ice.h:501