| 277 | -------------------------------------------------------------------------*/ |
| 278 | |
| 279 | HTTPHdrImpl * |
| 280 | http_hdr_create(HdrHeap *heap, HTTPType polarity, HTTPVersion version) |
| 281 | { |
| 282 | HTTPHdrImpl *hh; |
| 283 | |
| 284 | hh = (HTTPHdrImpl *)heap->allocate_obj(sizeof(HTTPHdrImpl), HDR_HEAP_OBJ_HTTP_HEADER); |
| 285 | http_hdr_init(heap, hh, polarity, version); |
| 286 | return (hh); |
| 287 | } |
| 288 | |
| 289 | /*------------------------------------------------------------------------- |
| 290 | -------------------------------------------------------------------------*/ |
no test coverage detected