# File lib/net/ssh/buffer.rb, line 320
    def write_bool(*b)
      b.each { |v| @content << (v ? "\1" : "\0") }
      self
    end