diff options
Diffstat (limited to 'src/endpoint.rs')
-rw-r--r-- | src/endpoint.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/endpoint.rs b/src/endpoint.rs index 77d7468..f30b25e 100644 --- a/src/endpoint.rs +++ b/src/endpoint.rs @@ -120,7 +120,7 @@ pub(crate) type DynEndpoint = Box<dyn GenericEndpoint + Send + Sync>; #[async_trait] pub(crate) trait GenericEndpoint { async fn handle(&self, buf: &[u8], from: NodeID) -> Result<Vec<u8>, Error>; - fn clear_handler(&self); + fn drop_handler(&self); fn clone_endpoint(&self) -> DynEndpoint; } @@ -148,7 +148,7 @@ where } } - fn clear_handler(&self) { + fn drop_handler(&self) { self.0.handler.swap(None); } |