# File lib/net/ssh/test/script.rb, line 73 73: def sends_channel_request(channel, request, reply, data, success=true) 74: events << LocalPacket.new(:channel_request, channel.remote_id, request, reply, data) 75: if reply 76: if success 77: events << RemotePacket.new(:channel_success, channel.local_id) 78: else 79: events << RemotePacket.new(:channel_failure, channel.local_id) 80: end 81: end 82: end