summaryrefslogtreecommitdiff
path: root/include/ouroboros/select.h
Commit message (Collapse)AuthorAgeFilesLines
* lib: Demultiplex the fast pathdimitri staessens2016-10-211-52/+0
| | | | | | | | The fast path will now use an incoming ring buffer per flow per process. This necessitated the development of a new method for the asynchronous io call, which is now based on an event queue system for scalability (fqueue). The ipcpd's and tools have been updated to this API.
* lib: Add a type for struct flow_setdimitri staessens2016-10-091-11/+13
| | | | | | The struct flow_set can now be accessed in applications as flow_set_t. Fixes some malformed lines and homogenizes output when receiving bad SDUs in the oping tool.
* lib: dev: Provide a set of fds to flow_selectdimitri staessens2016-09-061-0/+50
The flow_select call now takes as a parameter a flow_set_t, which specifies a set of flow descriptors that will unblock the select call when an SDU for one of them arrives. The select call has been moved to its own header.