(portal: &str)
| 1157 | } |
| 1158 | |
| 1159 | fn execute_portal(portal: &str) -> Vec<u8> { |
| 1160 | let mut body = Vec::new(); |
| 1161 | add_cstring(&mut body, portal); |
| 1162 | body.extend_from_slice(&0_i32.to_be_bytes()); |
| 1163 | tagged_message(b'E', body) |
| 1164 | } |
| 1165 | |
| 1166 | fn sync() -> Vec<u8> { |
| 1167 | tagged_message(b'S', Vec::new()) |
no test coverage detected