Page MenuHomeFreeBSD

syslogd: Simplify property filters
ClosedPublic

Authored by jfree on Aug 8 2023, 3:30 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Nov 3, 9:21 AM
Unknown Object (File)
Sun, Nov 2, 11:04 PM
Unknown Object (File)
Sun, Nov 2, 7:16 PM
Unknown Object (File)
Fri, Oct 24, 4:36 AM
Unknown Object (File)
Mon, Oct 20, 12:57 AM
Unknown Object (File)
Wed, Oct 15, 12:09 AM
Unknown Object (File)
Wed, Oct 15, 12:09 AM
Unknown Object (File)
Wed, Oct 15, 12:09 AM
Subscribers

Details

Summary
  • Use enums for property filter properties and comparisons.
  • Rename property and comparison values.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Because C enums are integer-sized, this makes struct prop_filter a bit fatter, but that's ok.

usr.sbin/syslogd/syslogd.c
237

FILT_CMP_* now starts from 0 instead of 1, but I think that's fine...

1571

This can be:

default:
    __unreachable();

(FILT_CMP_REGEX is handled above.)

This revision is now accepted and ready to land.Aug 9 2023, 7:21 PM
This revision now requires review to proceed.Aug 10 2023, 11:10 PM
This revision is now accepted and ready to land.Aug 11 2023, 2:50 PM
This revision was automatically updated to reflect the committed changes.