| 252 | */ |
| 253 | |
| 254 | void |
| 255 | httpBlocking(http_t *http, /* I - HTTP connection */ |
| 256 | int b) /* I - 1 = blocking, 0 = non-blocking */ |
| 257 | { |
| 258 | if (http) |
| 259 | { |
| 260 | http->blocking = b; |
| 261 | http_set_wait(http); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | |
| 266 | /* |
no test coverage detected