| 239 | } |
| 240 | |
| 241 | int http_aclient::connect_callback(const ACL_ASTREAM_CTX *ctx) |
| 242 | { |
| 243 | assert(ctx); |
| 244 | http_aclient* me = (http_aclient*) acl_astream_get_ctx(ctx); |
| 245 | assert(me); |
| 246 | return me->handle_connect(ctx) ? 0 : -1; |
| 247 | } |
| 248 | |
| 249 | bool http_aclient::timeout_callback() |
| 250 | { |
nothing calls this directly
no test coverage detected