| 282 | } |
| 283 | |
| 284 | bool |
| 285 | bypass_ok() const |
| 286 | { |
| 287 | if (is_api_result()) { |
| 288 | return false; |
| 289 | } else { |
| 290 | // Caller should check for a valid result beforehand. |
| 291 | ink_assert(result != PARENT_UNDEFINED); |
| 292 | ink_assert(is_some()); |
| 293 | return rec->bypass_ok(); |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | void |
| 298 | print() |
nothing calls this directly
no test coverage detected