# File lib/fcgi.rb, line 526 def initialize(type, id, flagment) super type, id @flagment = flagment end
# File lib/fcgi.rb, line 522 def self.parse(id, body) new(id, body) end
# File lib/fcgi.rb, line 533 def empty? @flagment.empty? end
# File lib/fcgi.rb, line 539 def make_body if @flagment.respond_to? 'force_encoding' then return @flagment.dup.force_encoding('BINARY') else return @flagment end end