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