Skip to content

Commit f801c2b

Browse files
Added basic pages content
1 parent d5e7637 commit f801c2b

29 files changed

+1881
-9
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
build/
22
node_modules/
3+
output/
34
*.d
45
*.o
56
*.a

DOC.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# libdatachannel - C API Documentation
1+
## libdatachannel - C API Documentation
22

33
The following details the C API of libdatachannel. The C API is available by including the `rtc/rtc.h` header.
44

@@ -7,6 +7,7 @@ The following details the C API of libdatachannel. The C API is available by inc
77
Unless stated otherwise, functions return `RTC_ERR_SUCCESS`, defined as `0`, on success.
88

99
All functions can return the following negative error codes:
10+
1011
- `RTC_ERR_INVALID`: an invalid argument was provided
1112
- `RTC_ERR_FAILURE`: a runtime error happened
1213
- `RTC_ERR_NOT_AVAIL`: an element is not available at the moment
@@ -23,13 +24,15 @@ void rtcInitLogger(rtcLogLevel level, rtcLogCallbackFunc cb)
2324
```
2425

2526
Arguments:
27+
2628
- `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`.
2729
- `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.
2830

2931
`cb` must have the following signature:
3032
`void myLogCallback(rtcLogLevel level, const char *message)`
3133

3234
Arguments:
35+
3336
- `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`.
3437
- `message`: a null-terminated string containing the log message
3538

@@ -58,6 +61,7 @@ void rtcSetUserPointer(int id, void *user_ptr)
5861
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.
5962

6063
Arguments:
64+
6165
- `id`: the identifier of Peer Connection, Data Channel, Track, or WebSocket
6266
- `user_ptr`: an opaque pointer whose meaning is up to the user
6367

@@ -86,6 +90,7 @@ typedef struct {
8690
Creates a Peer Connection.
8791

8892
Arguments:
93+
8994
- `config`: the configuration structure, containing:
9095
- `iceServers` (optional): an array of pointers on null-terminated ice server URIs (NULL if unused)
9196
- `iceServersCount` (optional): number of URLs in the array pointed by `iceServers` (0 if unused)
@@ -114,6 +119,7 @@ int rtcDeletePeerConnection(int pc)
114119
Deletes the specified Peer Connection.
115120

116121
Arguments:
122+
117123
- `pc`: the Peer Connection identifier
118124

119125
Return value: `RTC_ERR_SUCCESS` or a negative error code
@@ -173,6 +179,7 @@ int rtcSetLocalDescription(int pc, const char *type)
173179
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.
174180

175181
Arguments:
182+
176183
- `pc`: the Peer Connection identifier
177184
- `type` (optional): type of the description ("offer", "answer", "pranswer", or "rollback") or NULL for autodetection.
178185

@@ -185,6 +192,7 @@ int rtcSetRemoteDescription(int pc, const char *sdp, const char *type)
185192
Sets the remote description received from the remote peer by the user's method of choice. The remote description may have candidates or not.
186193

187194
Arguments:
195+
188196
- `pc`: the Peer Connection identifier
189197
- `type` (optional): type of the description ("offer", "answer", "pranswer", or "rollback") or NULL for autodetection.
190198

@@ -199,6 +207,7 @@ int rtcAddRemoteCandidate(int pc, const char *cand, const char *mid)
199207
Adds a trickled remote candidate received from the remote peer by the user's method of choice.
200208

201209
Arguments:
210+
202211
- `pc`: the Peer Connection identifier
203212
- `cand`: a null-terminated SDP string representing the candidate (with or without the `"a="` prefix)
204213
- `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)
216225
Retrieves the current local description in SDP format.
217226

218227
Arguments:
228+
219229
- `pc`: the Peer Connection identifier
220230
- `buffer`: a user-supplied buffer to store the description
221231
- `size`: the size of `buffer`
@@ -233,6 +243,7 @@ int rtcGetRemoteDescription(int pc, char *buffer, int size)
233243
Retrieves the current remote description in SDP format.
234244

235245
Arguments:
246+
236247
- `pc`: the Peer Connection identifier
237248
- `buffer`: a user-supplied buffer to store the description
238249
- `size`: the size of `buffer`
@@ -250,6 +261,7 @@ int rtcGetLocalDescriptionType(int pc, char *buffer, int size)
250261
Retrieves the current local description type as string.
251262

252263
Arguments:
264+
253265
- `pc`: the Peer Connection identifier
254266
- `buffer`: a user-supplied buffer to store the type
255267
- `size`: the size of `buffer`
@@ -267,6 +279,7 @@ int rtcGetRemoteDescriptionType(int pc, char *buffer, int size)
267279
Retrieves the current remote description type as string.
268280

269281
Arguments:
282+
270283
- `pc`: the Peer Connection identifier
271284
- `buffer`: a user-supplied buffer to store the type
272285
- `size`: the size of `buffer`
@@ -285,6 +298,7 @@ int rtcGetLocalAddress(int pc, char *buffer, int size)
285298
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`.
286299

287300
Arguments:
301+
288302
- `pc`: the Peer Connection identifier
289303
- `buffer`: a user-supplied buffer to store the address
290304
- `size`: the size of `buffer`
@@ -302,6 +316,7 @@ int rtcGetRemoteAddress(int pc, char *buffer, int size)
302316
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`.
303317

304318
Arguments:
319+
305320
- `pc`: the Peer Connection identifier
306321
- `buffer`: a user-supplied buffer to store the address
307322
- `size`: the size of `buffer`
@@ -319,6 +334,7 @@ int rtcGetSelectedCandidatePair(int pc, char *local, int localSize, char *remote
319334
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`.
320335

321336
Arguments:
337+
322338
- `pc`: the Peer Connection identifier
323339
- `local`: a user-supplied buffer to store the local candidate
324340
- `localSize`: the size of `local`
@@ -380,6 +396,7 @@ int rtcSendMessage(int id, const char *data, int size)
380396
```
381397

382398
Arguments:
399+
383400
- `id`: the channel identifier
384401
- `data`: the message data
385402
- `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)
410427
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.
411428

412429
Arguments:
430+
413431
- `id`: the channel identifier
414432
- `amount`: the new buffer level threshold
415433

@@ -424,6 +442,7 @@ int rtcReceiveMessage(int id, char *buffer, int *size)
424442
Receives a pending message if possible. The function may only be called if `MessageCallback` is not set.
425443

426444
Arguments:
445+
427446
- `id`: the channel identifier
428447
- `buffer`: a user-supplied buffer where to write the message data
429448
- `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)
441460
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.
442461

443462
Arguments:
463+
444464
- `id`: the channel identifier
445465

446466
Return value: the available amount or a negative error code
@@ -472,6 +492,7 @@ typedef struct {
472492
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.
473493

474494
Arguments:
495+
475496
- `pc`: identifier of the PeerConnection on which to add a Data Channel
476497
- `label`: a user-defined UTF-8 string representing the Data Channel name
477498
- `init`: a structure of initialization settings containing:
@@ -502,6 +523,7 @@ int rtcDeleteDataChannel(int dc)
502523
Deletes a Data Channel.
503524

504525
Arguments:
526+
505527
- `dc`: the Data Channel identifier
506528

507529
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)
515537
Retrieves the stream ID of the Data Channel.
516538

517539
Arguments:
540+
518541
- `dc`: the Data Channel identifier
519542

520543
Return value: the stream ID (0-65534) or a negative error code
@@ -528,6 +551,7 @@ int rtcGetDataChannelLabel(int dc, char *buffer, int size)
528551
Retrieves the label of a Data Channel.
529552

530553
Arguments:
554+
531555
- `dc`: the Data Channel identifier
532556
- `buffer`: a user-supplied buffer to store the label
533557
- `size`: the size of `buffer`
@@ -545,6 +569,7 @@ int rtcGetDataChannelProtocol(int dc, char *buffer, int size)
545569
Retrieves the protocol of a Data Channel.
546570

547571
Arguments:
572+
548573
- `dc`: the Data Channel identifier
549574
- `buffer`: a user-supplied buffer to store the protocol
550575
- `size`: the size of `buffer`
@@ -562,6 +587,7 @@ int rtcGetDataChannelReliability(int dc, rtcReliability *reliability)
562587
Retrieves the reliability settings of a Data Channel. The function may be called irrelevant of how the Data Channel was created.
563588

564589
Arguments:
590+
565591
- `dc`: the Data Channel identifier
566592
- `reliability` a user-supplied structure to fill
567593

@@ -578,6 +604,7 @@ int rtcAddTrack(int pc, const char *mediaDescriptionSdp)
578604
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.
579605

580606
Arguments:
607+
581608
- `pc`: the Peer Connection identifier
582609
- `mediaDescriptionSdp`: a null-terminated string specifying the corresponding media SDP. It must start with a m-line and include a mid parameter.
583610

@@ -596,6 +623,7 @@ int rtcDeleteTrack(int tr)
596623
Deletes a Track.
597624

598625
Arguments:
626+
599627
- `tr`: the Track identifier
600628

601629
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)
609637
Retrieves the SDP media description of a Track.
610638

611639
Arguments:
640+
612641
- `dc`: the Track identifier
613642
- `buffer`: a user-supplied buffer to store the description
614643
- `size`: the size of `buffer`
@@ -637,6 +666,7 @@ typedef struct {
637666
Creates a new client WebSocket.
638667

639668
Arguments:
669+
640670
- `url`: a null-terminated string representing the fully-qualified URL to open.
641671
- `config`: a structure with the following parameters:
642672
- `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)
652682
```
653683

654684
Arguments:
685+
655686
- `ws`: the identifier of the WebSocket to delete
656687

657688
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)
665696
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.
666697

667698
Arguments:
699+
668700
- `ws`: the identifier of the WebSocket
669701
- `buffer`: a user-supplied buffer to store the description
670702
- `size`: the size of `buffer`
@@ -682,6 +714,7 @@ int rtcGetWebSocketPath(int ws, char *buffer, int size)
682714
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.
683715

684716
Arguments:
717+
685718
- `ws`: the identifier of the WebSocket
686719
- `buffer`: a user-supplied buffer to store the description
687720
- `size`: the size of `buffer`
@@ -710,6 +743,7 @@ typedef struct {
710743
Creates a new WebSocket server.
711744

712745
Arguments:
746+
713747
- `config`: a structure with the following parameters:
714748
- `uint16_t port`: the port to listen on (if 0, automatically select an available port)
715749
- `bool enableTls`: if true, enable the TLS layer (WSS)
@@ -731,6 +765,7 @@ int rtcDeleteWebSocketServer(int wsserver)
731765
```
732766

733767
Arguments:
768+
734769
- `wsserver`: the identifier of the WebSocket Server to delete
735770

736771
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);
743778
Retrieves the port which the WebSocket Server is listening on.
744779

745780
Arguments:
781+
746782
- `wsserver`: the identifier of the WebSocket Server
747783

748784
Return value: The port of the WebSocket Server or a negative error code

pages/content/hello-world.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Title: Hello World!
2+
Slug: hello-world
3+
Date: 2021-07-21 21:00
4+
5+
Hello world!
6+

0 commit comments

Comments
 (0)