void ParentRecord::UpdateMatch(ParentResult* result, RequestData* rdata); Updates the record ptr in result if the this element appears later in the file
| 852 | // appears later in the file |
| 853 | // |
| 854 | void |
| 855 | ParentRecord::UpdateMatch(ParentResult *result, RequestData *rdata) |
| 856 | { |
| 857 | if (this->CheckForMatch(static_cast<HttpRequestData *>(rdata), result->line_number) == true) { |
| 858 | result->rec = this; |
| 859 | result->line_number = this->line_num; |
| 860 | |
| 861 | Dbg(dbg_ctl_parent_select, "Matched with %p parent node from line %d", this, this->line_num); |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | ParentRecord::~ParentRecord() |
| 866 | { |
nothing calls this directly
no test coverage detected