mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-07 19:01:06 +00:00
17 lines
675 B
Plaintext
17 lines
675 B
Plaintext
/* new todo file for BTstack */
|
|
|
|
NEW FUNCTIONALITY
|
|
- implement single connection event-driven socket server
|
|
- socket fd in data_source can be temp. replaced by actual connection fd
|
|
|
|
IMPROVE
|
|
- make data_source_t opaque: data_source_set_fd, data_source_set_cb
|
|
- implement TimerSource
|
|
- implement some kind of noitfy mechanism between multiple units
|
|
- make SocketServer object-oriented
|
|
- put data into struct
|
|
- DataSource * dataSource = SocketServer_createUnixSocket( name );
|
|
- DataSource * dataSource = SocketServer_createTcpSocket( port);
|
|
- how to handle multiple parallel connections?
|
|
- callback to announce new connection, allow to store local context pointer
|