# File lib/net/ssh/connection/channel.rb, line 249
    def send_data(data)
      raise EOFError, "cannot send data if channel has declared eof" if eof?
      output.append(data.to_s)
    end