| 2474 | -------------------------------------------------------------------------*/ |
| 2475 | |
| 2476 | int |
| 2477 | LogAccess::marshal_proxy_req_header_len(char *buf) |
| 2478 | { |
| 2479 | if (buf) { |
| 2480 | int64_t val = 0; |
| 2481 | if (m_proxy_request) { |
| 2482 | val = m_proxy_request->length_get(); |
| 2483 | } |
| 2484 | marshal_int(buf, val); |
| 2485 | } |
| 2486 | return INK_MIN_ALIGN; |
| 2487 | } |
| 2488 | |
| 2489 | /*------------------------------------------------------------------------- |
| 2490 | -------------------------------------------------------------------------*/ |
nothing calls this directly
no test coverage detected