# File lib/net/ssh/transport/algorithms.rb, line 81
81:     def self.allowed_packet?(packet)
82:       ( 1.. 4).include?(packet.type) ||
83:       ( 6..19).include?(packet.type) ||
84:       (21..49).include?(packet.type)
85:     end