| 553 | } |
| 554 | |
| 555 | static TSEvent |
| 556 | StateAuthProxyWriteComplete(AuthRequestContext *auth, void * /* edata ATS_UNUSED */) |
| 557 | { |
| 558 | // We finished writing the auth proxy request. Kick off a read to get the response. |
| 559 | auth->iobuf.reset(); |
| 560 | |
| 561 | TSVConnRead(auth->vconn, auth->cont, auth->iobuf.buffer, std::numeric_limits<int64_t>::max()); |
| 562 | |
| 563 | // XXX Do we need to keep the read and write VIOs and close them? |
| 564 | |
| 565 | return TS_EVENT_CONTINUE; |
| 566 | } |
| 567 | |
| 568 | static TSEvent |
| 569 | StateAuthProxyReadContent(AuthRequestContext *auth, void * /* edata ATS_UNUSED */) |
nothing calls this directly
no test coverage detected