| 2038 | -------------------------------------------------------------------------*/ |
| 2039 | |
| 2040 | int |
| 2041 | LogAccess::marshal_client_req_header_len(char *buf) |
| 2042 | { |
| 2043 | if (buf) { |
| 2044 | int64_t len = 0; |
| 2045 | if (m_client_request) { |
| 2046 | len = m_client_request->length_get(); |
| 2047 | } |
| 2048 | marshal_int(buf, len); |
| 2049 | } |
| 2050 | return INK_MIN_ALIGN; |
| 2051 | } |
| 2052 | |
| 2053 | /*------------------------------------------------------------------------- |
| 2054 | -------------------------------------------------------------------------*/ |
nothing calls this directly
no test coverage detected