()
| 114 | } |
| 115 | |
| 116 | pub fn authentication_md5_password() -> Vec<u8> { |
| 117 | let mut list = BufferList::new(); |
| 118 | list.add_int32(5); |
| 119 | list.add_bytes(&[1, 2, 3, 4]); |
| 120 | list.join(true, Some(b'R')) |
| 121 | } |
| 122 | |
| 123 | pub fn authentication_sasl() -> Vec<u8> { |
| 124 | let mut list = BufferList::new(); |
no test coverage detected