()
| 129 | } |
| 130 | |
| 131 | pub fn authentication_sasl_continue() -> Vec<u8> { |
| 132 | let mut list = BufferList::new(); |
| 133 | list.add_int32(11); |
| 134 | list.add_string("data"); |
| 135 | list.join(true, Some(b'R')) |
| 136 | } |
| 137 | |
| 138 | pub fn authentication_sasl_final() -> Vec<u8> { |
| 139 | let mut list = BufferList::new(); |
no test coverage detected