# File lib/Dnsruby/event_machine_interface.rb, line 207
      def unbind
        TheLog.debug("Unbind called")
        if (!@closing)
          if (@timeout_time <= Time.now + 1)
            send_timeout
          else
            #@TODO@ RAISE OTHER NETWORK ERROR!
            TheLog.debug("Sending IOError to client")
            send_to_client(nil, IOError.new("Network error"))
          end
        end
        @closing=false
        # Take the last send off the list of outstanding sends
        EventMachineInterface.remove_from_outstanding(self)
      end