# File lib/mongrel.rb, line 362
362:     def reset
363:       if @body_sent
364:         raise "You have already sent the request body."
365:       elsif @header_sent
366:         raise "You have already sent the request headers."
367:       else
368:         @header.out.rewind
369:         @body.rewind
370:       end
371:     end