| 226 | } |
| 227 | |
| 228 | size_t client::argv_len_sum() const { |
| 229 | size_t sum = 0; |
| 230 | for (auto &cmd : vecqueuedcmd) |
| 231 | sum += cmd.argv_len_sum; |
| 232 | return sum + argv_len_sumActive; |
| 233 | } |
| 234 | |
| 235 | /* This function puts the client in the queue of clients that should write |
| 236 | * their output buffers to the socket. Note that it does not *yet* install |
no outgoing calls
no test coverage detected