[core] Added comment to stream description structures;

v0.5.xx
Alexander Vdolainen 9 years ago
parent cef66df637
commit 059e2bcc9d

@ -174,13 +174,18 @@ typedef struct __link_rpc_list_type {
struct sxstream_ops; struct sxstream_ops;
/*
* description of the stream
* located on the master and client,
* client will get it after sync
*/
struct sxstream_description { struct sxstream_description {
uint16_t stid; uint16_t stid; /** < stream type ID */
uint16_t pcid; uint16_t pcid; /** < pinned channel type ID */
uint16_t type; uint16_t type; /** < type: 0||SXE_O_NAMED||SXE_O_BINARY */
uint16_t flags; uint16_t flags; /** < possible flags */
struct sxstream_ops *ops; struct sxstream_ops *ops; /** < operations */
usrtc_node_t node; usrtc_node_t node; /** < internal node struct */
}; };
struct sxstream_opened { struct sxstream_opened {

Loading…
Cancel
Save