@@ -235,8 +235,7 @@ UXRDLLAPI bool uxr_delete_session_retries(uxrSession* session, size_t retries);
235
235
236
236
/**
237
237
* @brief Creates and initializes an output best-effort stream.
238
- * The maximum number of output best-effort streams is set by the `CONFIG_MAX_OUTPUT_BEST_EFFORT_STREAMS`
239
- * variable at `client.config` file.
238
+ * The maximum number of output best-effort streams is set by the `CONFIG_MAX_OUTPUT_BEST_EFFORT_STREAMS`.
240
239
* @param session A uxrSession structure previously initialized.
241
240
* @param buffer The memory block where the messages will be written.
242
241
* @param size The buffer size.
@@ -249,8 +248,7 @@ UXRDLLAPI uxrStreamId uxr_create_output_best_effort_stream(
249
248
250
249
/**
251
250
* @brief Creates and initializes an output reliable stream.
252
- * The maximum number of output reliable streams is set by the `CONFIG_MAX_OUTPUT_RELIABLE_STREAMS`
253
- * variable at `client.config` file.
251
+ * The maximum number of output reliable streams is set by the `CONFIG_MAX_OUTPUT_RELIABLE_STREAMS`.
254
252
* @param session A uxrSession structure previously initialized.
255
253
* @param buffer The memory block where the messages will be written.
256
254
* @param size The buffer size.
@@ -267,17 +265,15 @@ UXRDLLAPI uxrStreamId uxr_create_output_reliable_stream(
267
265
268
266
/**
269
267
* @brief Creates and initializes an input best-effort stream.
270
- * The maximum number of input best-effort streams is set by the `CONFIG_MAX_INPUT_BEST_EFFORT_STREAMS`
271
- * variable at `client.config` file.
268
+ * The maximum number of input best-effort streams is set by the `CONFIG_MAX_INPUT_BEST_EFFORT_STREAMS`.
272
269
* @param session A uxrSession structure previously initialized.
273
270
* @return A uxrStreamId which could by used for managing the stream.
274
271
*/
275
272
UXRDLLAPI uxrStreamId uxr_create_input_best_effort_stream (uxrSession * session );
276
273
277
274
/**
278
275
* @brief Creates and initializes an input reliable stream.
279
- * The maximum number of input reliable streams is set by the `CONFIG_MAX_INPUT_RELIABLE_STREAMS`
280
- * variable at `client.config` file.
276
+ * The maximum number of input reliable streams is set by the `CONFIG_MAX_INPUT_RELIABLE_STREAMS`.
281
277
* @param session A uxrSession structure previously initialized.
282
278
* @param buffer The memory block where the messages will be written.
283
279
* @param size The buffer size.
0 commit comments