| 6 | static int __echo_data = 0; |
| 7 | |
| 8 | static void *thread_client(void *ctx) |
| 9 | { |
| 10 | ACL_VSTREAM *cstream = (ACL_VSTREAM*) ctx; |
| 11 | echo_client(cstream, __rw_timeout, __echo_data); |
| 12 | return NULL; |
| 13 | } |
| 14 | |
| 15 | static void thread_server_run(ACL_VSTREAM *sstream) |
| 16 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…