(&self, ctx: &RequestContext, request: &[u8])
| 17 | } |
| 18 | |
| 19 | pub async fn handle(&self, ctx: &RequestContext, request: &[u8]) -> Option<Vec<u8>> { |
| 20 | self.router.handle(ctx, request).await |
| 21 | } |
| 22 | |
| 23 | pub fn protocols(&self) -> &[u8] { |
| 24 | &self.supported_protocols |
no outgoing calls