# File lib_wpm/wpm.rb, line 566
    def status
      if (field_value = header('Status')) then
        code, reason = field_value.split(/\s+/, 2)
        return code.to_i
      else
        return 200
      end
    end