Returns `true` if the message is complete. The message is complete after the full header is prduced and one of the following is true: @li The skip body option was set. @li The semantics of the message indicate there is no body. @li The semantics of the message indicate a body is expected, and the entire body was parsed. */
| 184 | and the entire body was parsed. |
| 185 | */ |
| 186 | bool |
| 187 | is_done() const |
| 188 | { |
| 189 | return state_ == state::complete; |
| 190 | } |
| 191 | |
| 192 | /** Returns `true` if a the parser has produced the full header. |
| 193 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected