| 19 | #define CLIENT_WRITE_BUFFER_BLOCK_SIZE 8192 // Number of bytes to write to BMP reader from buffer |
| 20 | |
| 21 | struct ThreadMgmt { |
| 22 | pthread_t thr; |
| 23 | BMPListener::ClientInfo client; |
| 24 | Config *cfg; |
| 25 | Logger *log; |
| 26 | bool running; // true if running, zero if not running |
| 27 | bool baselineTimeout; // true if past the baseline time of the router |
| 28 | }; |
| 29 | |
| 30 | struct ClientThreadInfo { |
| 31 | msgBus_kafka *mbus; |
nothing calls this directly
no outgoing calls
no test coverage detected