fn drop()

in plasma-stream/src/server/handler.rs [81:86]


    fn drop(&mut self) {
        // Add a permit back to the semaphore. Doing so unblocks the listener if the max
        // number of connections has been reached.
        self.limit_connections.add_permits(1);
        debug!("closed connection to {}", self.socket.peer_addr().unwrap());
    }