---------------------------------------------------------------------------
| 22 | } |
| 23 | //--------------------------------------------------------------------------- |
| 24 | void TMessMatch::Clear(void) |
| 25 | { |
| 26 | bNot = false; |
| 27 | PriorityMask = PriorityMaskAll; // any Priority (match all) |
| 28 | FacilityMask = FacilityMaskAll; // any Facility (match all) |
| 29 | |
| 30 | Field1 = 0; |
| 31 | Contains1 = true; |
| 32 | Text1->Text = ""; |
| 33 | Field2 = 0; |
| 34 | Contains2 = true; |
| 35 | Text2->Text = ""; |
| 36 | |
| 37 | MatchCase = true; |
| 38 | } |
| 39 | //--------------------------------------------------------------------------- |
| 40 | bool TMessMatch::Match(TSyslogMessage * p) |
| 41 | { |
nothing calls this directly
no outgoing calls
no test coverage detected