Destroy a StaticHitRequest, including the per-txn continuation.
| 251 | |
| 252 | // Destroy a StaticHitRequest, including the per-txn continuation. |
| 253 | static void |
| 254 | StaticHitRequestDestroy(StaticHitRequest *trq, TSVIO vio, TSCont contp) |
| 255 | { |
| 256 | if (vio) { |
| 257 | TSVConnClose(TSVIOVConnGet(vio)); |
| 258 | } |
| 259 | |
| 260 | TSContDestroy(contp); |
| 261 | delete trq; |
| 262 | } |
| 263 | |
| 264 | // NOTE: This will always append a new "field_name: value" |
| 265 | static void |
no test coverage detected