| 160 | } |
| 161 | |
| 162 | static apr_bucket *bucket_socket_ex_create(socket_ex_data *data, |
| 163 | apr_bucket_alloc_t *list) |
| 164 | { |
| 165 | apr_bucket *b = apr_bucket_alloc(sizeof(*b), list); |
| 166 | |
| 167 | APR_BUCKET_INIT(b); |
| 168 | b->free = apr_bucket_free; |
| 169 | b->list = list; |
| 170 | return bucket_socket_ex_make(b, data); |
| 171 | } |
| 172 | |
| 173 | |
| 174 | /* |
no test coverage detected