| 3065 | -------------------------------------------------------------------------*/ |
| 3066 | |
| 3067 | int |
| 3068 | LogAccess::marshal_cache_write_retries(char *buf) |
| 3069 | { |
| 3070 | if (buf) { |
| 3071 | int64_t id = 0; |
| 3072 | if (m_http_sm) { |
| 3073 | id = m_http_sm->get_cache_sm().get_open_write_tries(); |
| 3074 | } |
| 3075 | marshal_int(buf, id); |
| 3076 | } |
| 3077 | return INK_MIN_ALIGN; |
| 3078 | } |
| 3079 | |
| 3080 | int |
| 3081 | LogAccess::marshal_cache_collapsed_connection_success(char *buf) |
nothing calls this directly
no test coverage detected