| 101 | } |
| 102 | |
| 103 | void |
| 104 | release() |
| 105 | { |
| 106 | if (0 == this->refcount_dec()) { |
| 107 | // Delete this on an ET_TASK thread, which avoids doing potentially slow things on an ET_NET thread. |
| 108 | static DbgCtl dc{"url_rewrite"}; |
| 109 | Dbg(dc, "Deleting old configuration immediately"); |
| 110 | new_Deleter(this, 0); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | bool |
| 115 | is_valid() const |
nothing calls this directly
no test coverage detected