(portal: &str)
| 1150 | } |
| 1151 | |
| 1152 | fn describe_portal(portal: &str) -> Vec<u8> { |
| 1153 | let mut body = Vec::new(); |
| 1154 | body.push(b'P'); |
| 1155 | add_cstring(&mut body, portal); |
| 1156 | tagged_message(b'D', body) |
| 1157 | } |
| 1158 | |
| 1159 | fn execute_portal(portal: &str) -> Vec<u8> { |
| 1160 | let mut body = Vec::new(); |
no test coverage detected