# File lib/fcgi.rb, line 460 460: def initialize(type, id, values) 461: super type, id 462: @values = values 463: end
# File lib/fcgi.rb, line 434 434: def self::parse(id, body) 435: new(id, parse_values(body)) 436: end
# File lib/fcgi.rb, line 438 438: def self::parse_values(buf) 439: result = {} 440: until buf.empty? 441: name, value = *read_pair(buf) 442: result[name] = value 443: end 444: result 445: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.