Microsoft Internet Security and Acceleration Server 2004 SDK

FpcReportJobCategory

The FpcReportJobCategory enumerated type contains values that specify report job categories. Each report job category refers to a specific type of generated reports.

typedef enum FpcReportJobCategory
{
  fpcReportJobCategorySummaryBit
fpcReportJobCategorySummaryBit
Bit value that represents summary reports.
 = 0x00000001,
  fpcReportJobCategoryWebUsageBit
fpcReportJobCategoryWebUsageBit
Bit value that represents Web usage reports.
 = 0x00000002,
  fpcReportJobCategoryApplicationUsageBit
fpcReportJobCategoryApplicationUsageBit
Bit value that represents application usage reports.
 = 0x00000004,
  fpcReportJobCategoryTrafficAndUtilizationBit
fpcReportJobCategoryTrafficAndUtilizationBit
Bit value that represents traffic and utilization reports.
 = 0x00000008,
  fpcReportJobCategorySecurityBit
fpcReportJobCategorySecurityBit
Bit value that represents security reports.
 = 0x00000010

} FpcReportJobCategory;

Constants

fpcReportJobCategorySummaryBit
Bit value that represents summary reports.
fpcReportJobCategoryWebUsageBit
Bit value that represents Web usage reports.
fpcReportJobCategoryApplicationUsageBit
Bit value that represents application usage reports.
fpcReportJobCategoryTrafficAndUtilizationBit
Bit value that represents traffic and utilization reports.
fpcReportJobCategorySecurityBit
Bit value that represents security reports.

Remarks

You can combine these bit values using the Or operator to obtain a value that specifies two or more job categories. For example, combining the binary values for summary reports (1), application usage reports (100), and security reports (10000) results in the binary value 10101. The right bit represents summary reports, the next bit represents Web usage reports, and so on. Thus, the bits corresponding to summary reports, application usage reports, and security reports are set, while the bits corresponding to the other report categories are not set. This binary value is equal to the hexadecimal value 0x15 (which corresponds to the decimal value 21).

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Comenum.h.

See Also

Enumerated Types