| 131 | void purge(); |
| 132 | |
| 133 | bool equals(const messagebuf &m) const |
| 134 | { |
| 135 | return buf.length() == m.buf.length() && !memcmp(buf.getbuf(), m.buf.getbuf(), buf.length()); |
| 136 | } |
| 137 | |
| 138 | bool endswith(const messagebuf &m) const |
| 139 | { |
no test coverage detected