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
-`level`: the log level. It must be one of the following: `RTC_LOG_NONE`, `RTC_LOG_FATAL`, `RTC_LOG_ERROR`, `RTC_LOG_WARNING`, `RTC_LOG_INFO`, `RTC_LOG_DEBUG`, `RTC_LOG_VERBOSE`.
27
29
-`cb` (optional): the callback to pass the log lines to. If the callback is already set, it is replaced. If NULL after a callback is set, the callback is unset. If NULL on first call, the library will log to stdout instead.
-`level`: the log level for the current message. It will be one of the following: `RTC_LOG_FATAL`, `RTC_LOG_ERROR`, `RTC_LOG_WARNING`, `RTC_LOG_INFO`, `RTC_LOG_DEBUG`, `RTC_LOG_VERBOSE`.
34
37
-`message`: a null-terminated string containing the log message
Sets a opaque user pointer for a Peer Connection, Data Channel, Track, or WebSocket. The user pointer will be passed as last argument in each corresponding callback. It will never be accessed in any way. The initial user pointer of a Peer Connection or WebSocket is `NULL`, and the initial one of a Data Channel or Track is the one of the Peer Connection at the time of creation.
59
62
60
63
Arguments:
64
+
61
65
-`id`: the identifier of Peer Connection, Data Channel, Track, or WebSocket
62
66
-`user_ptr`: an opaque pointer whose meaning is up to the user
63
67
@@ -86,6 +90,7 @@ typedef struct {
86
90
Creates a Peer Connection.
87
91
88
92
Arguments:
93
+
89
94
-`config`: the configuration structure, containing:
90
95
-`iceServers` (optional): an array of pointers on null-terminated ice server URIs (NULL if unused)
91
96
-`iceServersCount` (optional): number of URLs in the array pointed by `iceServers` (0 if unused)
@@ -114,6 +119,7 @@ int rtcDeletePeerConnection(int pc)
114
119
Deletes the specified Peer Connection.
115
120
116
121
Arguments:
122
+
117
123
-`pc`: the Peer Connection identifier
118
124
119
125
Return value: `RTC_ERR_SUCCESS` or a negative error code
@@ -173,6 +179,7 @@ int rtcSetLocalDescription(int pc, const char *type)
173
179
Initiates the handshake process. Following this call, the local description callback will be called with the local description, which must be sent to the remote peer by the user's method of choice. Note this call is implicit after `rtcSetRemoteDescription` and `rtcCreateDataChannel` if `disableAutoNegotiation` was not set on Peer Connection creation.
174
180
175
181
Arguments:
182
+
176
183
-`pc`: the Peer Connection identifier
177
184
-`type` (optional): type of the description ("offer", "answer", "pranswer", or "rollback") or NULL for autodetection.
Adds a trickled remote candidate received from the remote peer by the user's method of choice.
200
208
201
209
Arguments:
210
+
202
211
-`pc`: the Peer Connection identifier
203
212
-`cand`: a null-terminated SDP string representing the candidate (with or without the `"a="` prefix)
204
213
-`mid` (optional): a null-terminated string representing the mid of the candidate in the remote SDP description or NULL for autodetection
@@ -216,6 +225,7 @@ int rtcGetLocalDescription(int pc, char *buffer, int size)
216
225
Retrieves the current local description in SDP format.
217
226
218
227
Arguments:
228
+
219
229
-`pc`: the Peer Connection identifier
220
230
-`buffer`: a user-supplied buffer to store the description
221
231
-`size`: the size of `buffer`
@@ -233,6 +243,7 @@ int rtcGetRemoteDescription(int pc, char *buffer, int size)
233
243
Retrieves the current remote description in SDP format.
234
244
235
245
Arguments:
246
+
236
247
-`pc`: the Peer Connection identifier
237
248
-`buffer`: a user-supplied buffer to store the description
238
249
-`size`: the size of `buffer`
@@ -250,6 +261,7 @@ int rtcGetLocalDescriptionType(int pc, char *buffer, int size)
250
261
Retrieves the current local description type as string.
251
262
252
263
Arguments:
264
+
253
265
-`pc`: the Peer Connection identifier
254
266
-`buffer`: a user-supplied buffer to store the type
255
267
-`size`: the size of `buffer`
@@ -267,6 +279,7 @@ int rtcGetRemoteDescriptionType(int pc, char *buffer, int size)
267
279
Retrieves the current remote description type as string.
268
280
269
281
Arguments:
282
+
270
283
-`pc`: the Peer Connection identifier
271
284
-`buffer`: a user-supplied buffer to store the type
272
285
-`size`: the size of `buffer`
@@ -285,6 +298,7 @@ int rtcGetLocalAddress(int pc, char *buffer, int size)
285
298
Retrieves the current local address, i.e. the network address of the currently selected local candidate. The address will have the format `"IP_ADDRESS:PORT"`, where `IP_ADDRESS` may be either IPv4 or IPv6. The call might fail if the PeerConnection is not in state `RTC_CONNECTED`, and the address might change if the state is not `RTC_COMPLETED`.
286
299
287
300
Arguments:
301
+
288
302
-`pc`: the Peer Connection identifier
289
303
-`buffer`: a user-supplied buffer to store the address
290
304
-`size`: the size of `buffer`
@@ -302,6 +316,7 @@ int rtcGetRemoteAddress(int pc, char *buffer, int size)
302
316
Retrieves the current remote address, i.e. the network address of the currently selected remote candidate. The address will have the format `"IP_ADDRESS:PORT"`, where `IP_ADDRESS` may be either IPv4 or IPv6. The call may fail if the state is not `RTC_CONNECTED`, and the address might change if the state is not `RTC_COMPLETED`.
303
317
304
318
Arguments:
319
+
305
320
-`pc`: the Peer Connection identifier
306
321
-`buffer`: a user-supplied buffer to store the address
307
322
-`size`: the size of `buffer`
@@ -319,6 +334,7 @@ int rtcGetSelectedCandidatePair(int pc, char *local, int localSize, char *remote
319
334
Retrieve the currently selected candidate pair. The call may fail if the state is not `RTC_CONNECTED`, and the selected candidate pair might change if the state is not `RTC_COMPLETED`.
320
335
321
336
Arguments:
337
+
322
338
-`pc`: the Peer Connection identifier
323
339
-`local`: a user-supplied buffer to store the local candidate
324
340
-`localSize`: the size of `local`
@@ -380,6 +396,7 @@ int rtcSendMessage(int id, const char *data, int size)
380
396
```
381
397
382
398
Arguments:
399
+
383
400
-`id`: the channel identifier
384
401
-`data`: the message data
385
402
-`size`: if size >= 0, `data` is interpreted as a binary message of length `size`, otherwise it is interpreted as a null-terminated UTF-8 string.
@@ -410,6 +427,7 @@ int rtcSetBufferedAmountLowThreshold(int id, int amount)
410
427
Changes the buffered amount threshold under which `BufferedAmountLowCallback` is called. The callback is called when the buffered amount was strictly superior and gets equal to or lower than the threshold when a message is sent. The initial threshold is 0, meaning the the callback is called each time the buffered amount goes back to zero after being non-zero.
411
428
412
429
Arguments:
430
+
413
431
-`id`: the channel identifier
414
432
-`amount`: the new buffer level threshold
415
433
@@ -424,6 +442,7 @@ int rtcReceiveMessage(int id, char *buffer, int *size)
424
442
Receives a pending message if possible. The function may only be called if `MessageCallback` is not set.
425
443
426
444
Arguments:
445
+
427
446
-`id`: the channel identifier
428
447
-`buffer`: a user-supplied buffer where to write the message data
429
448
-`size`: a pointer to a user-supplied int which must be initialized to the size of `buffer`. On success, the function will write the size of the message to it before returning.
@@ -441,6 +460,7 @@ int rtcGetAvailableAmount(int id)
441
460
Retrieves the available amount, i.e. the total size of messages pending reception with `rtcReceiveMessage`. The function may only be called if `MessageCallback` is not set.
442
461
443
462
Arguments:
463
+
444
464
-`id`: the channel identifier
445
465
446
466
Return value: the available amount or a negative error code
@@ -472,6 +492,7 @@ typedef struct {
472
492
Adds a Data Channel on a Peer Connection. The Peer Connection does not need to be connected, however, the Data Channel will be open only when the Peer Connection is connected.
473
493
474
494
Arguments:
495
+
475
496
-`pc`: identifier of the PeerConnection on which to add a Data Channel
476
497
-`label`: a user-defined UTF-8 string representing the Data Channel name
477
498
-`init`: a structure of initialization settings containing:
@@ -502,6 +523,7 @@ int rtcDeleteDataChannel(int dc)
502
523
Deletes a Data Channel.
503
524
504
525
Arguments:
526
+
505
527
-`dc`: the Data Channel identifier
506
528
507
529
After this function has been called, `dc` must not be used in a function call anymore. This function will block until all scheduled callbacks of `dc` return (except the one this function might be called in) and no other callback will be called for `dc` after it returns.
@@ -515,6 +537,7 @@ int rtcGetDataChannelStream(int dc)
515
537
Retrieves the stream ID of the Data Channel.
516
538
517
539
Arguments:
540
+
518
541
-`dc`: the Data Channel identifier
519
542
520
543
Return value: the stream ID (0-65534) or a negative error code
@@ -528,6 +551,7 @@ int rtcGetDataChannelLabel(int dc, char *buffer, int size)
528
551
Retrieves the label of a Data Channel.
529
552
530
553
Arguments:
554
+
531
555
-`dc`: the Data Channel identifier
532
556
-`buffer`: a user-supplied buffer to store the label
533
557
-`size`: the size of `buffer`
@@ -545,6 +569,7 @@ int rtcGetDataChannelProtocol(int dc, char *buffer, int size)
545
569
Retrieves the protocol of a Data Channel.
546
570
547
571
Arguments:
572
+
548
573
-`dc`: the Data Channel identifier
549
574
-`buffer`: a user-supplied buffer to store the protocol
550
575
-`size`: the size of `buffer`
@@ -562,6 +587,7 @@ int rtcGetDataChannelReliability(int dc, rtcReliability *reliability)
562
587
Retrieves the reliability settings of a Data Channel. The function may be called irrelevant of how the Data Channel was created.
563
588
564
589
Arguments:
590
+
565
591
-`dc`: the Data Channel identifier
566
592
-`reliability` a user-supplied structure to fill
567
593
@@ -578,6 +604,7 @@ int rtcAddTrack(int pc, const char *mediaDescriptionSdp)
578
604
Adds a new Track on a Peer Connection. The Peer Connection does not need to be connected, however, the Track will be open only when the Peer Connection is connected.
579
605
580
606
Arguments:
607
+
581
608
-`pc`: the Peer Connection identifier
582
609
-`mediaDescriptionSdp`: a null-terminated string specifying the corresponding media SDP. It must start with a m-line and include a mid parameter.
583
610
@@ -596,6 +623,7 @@ int rtcDeleteTrack(int tr)
596
623
Deletes a Track.
597
624
598
625
Arguments:
626
+
599
627
-`tr`: the Track identifier
600
628
601
629
After this function has been called, `tr` must not be used in a function call anymore. This function will block until all scheduled callbacks of `tr` return (except the one this function might be called in) and no other callback will be called for `tr` after it returns.
@@ -609,6 +637,7 @@ int rtcGetTrackDescription(int tr, char *buffer, int size)
609
637
Retrieves the SDP media description of a Track.
610
638
611
639
Arguments:
640
+
612
641
-`dc`: the Track identifier
613
642
-`buffer`: a user-supplied buffer to store the description
614
643
-`size`: the size of `buffer`
@@ -637,6 +666,7 @@ typedef struct {
637
666
Creates a new client WebSocket.
638
667
639
668
Arguments:
669
+
640
670
-`url`: a null-terminated string representing the fully-qualified URL to open.
641
671
-`config`: a structure with the following parameters:
642
672
-`bool disableTlsVerification`: if true, don't verify the TLS certificate, else try to verify it if possible
@@ -652,6 +682,7 @@ int rtcDeleteWebSocket(int ws)
652
682
```
653
683
654
684
Arguments:
685
+
655
686
-`ws`: the identifier of the WebSocket to delete
656
687
657
688
After this function has been called, `ws` must not be used in a function call anymore. This function will block until all scheduled callbacks of `ws` return (except the one this function might be called in) and no other callback will be called for `ws` after it returns.
@@ -665,6 +696,7 @@ int rtcGetWebSocketRemoteAddress(int ws, char *buffer, int size)
665
696
Retrieves the remote address, i.e. the network address of the remote endpoint. The address will have the format `"HOST:PORT"`. The call may fail if the underlying TCP transport of the WebSocket is not connected. This function is useful for a client WebSocket received by a WebSocket Server.
666
697
667
698
Arguments:
699
+
668
700
-`ws`: the identifier of the WebSocket
669
701
-`buffer`: a user-supplied buffer to store the description
670
702
-`size`: the size of `buffer`
@@ -682,6 +714,7 @@ int rtcGetWebSocketPath(int ws, char *buffer, int size)
682
714
Retrieves the path of the WebSocket, i.e. the HTTP requested path. This function is useful for a client WebSocket received by a WebSocket Server. Warning: The WebSocket must be open for the call to succeed.
683
715
684
716
Arguments:
717
+
685
718
-`ws`: the identifier of the WebSocket
686
719
-`buffer`: a user-supplied buffer to store the description
687
720
-`size`: the size of `buffer`
@@ -710,6 +743,7 @@ typedef struct {
710
743
Creates a new WebSocket server.
711
744
712
745
Arguments:
746
+
713
747
-`config`: a structure with the following parameters:
714
748
-`uint16_t port`: the port to listen on (if 0, automatically select an available port)
715
749
-`bool enableTls`: if true, enable the TLS layer (WSS)
@@ -731,6 +765,7 @@ int rtcDeleteWebSocketServer(int wsserver)
731
765
```
732
766
733
767
Arguments:
768
+
734
769
-`wsserver`: the identifier of the WebSocket Server to delete
735
770
736
771
After this function has been called, `wsserver` must not be used in a function call anymore. This function will block until all scheduled callbacks of `wsserver` return (except the one this function might be called in) and no other callback will be called for `wsserver` after it returns.
@@ -743,6 +778,7 @@ int rtcGetWebSocketServerPort(int wsserver);
743
778
Retrieves the port which the WebSocket Server is listening on.
744
779
745
780
Arguments:
781
+
746
782
-`wsserver`: the identifier of the WebSocket Server
747
783
748
784
Return value: The port of the WebSocket Server or a negative error code
0 commit comments