Return true if the internal requests can be cached.
| 678 | |
| 679 | // Return true if the internal requests can be cached. |
| 680 | static bool |
| 681 | CacheInternalRequests(TSHttpTxn txn) |
| 682 | { |
| 683 | AuthOptions *opt = static_cast<AuthOptions *>(TSUserArgGet(txn, AuthTaggedRequestArg)); |
| 684 | return opt ? opt->cache_internal_requests : false; |
| 685 | } |
| 686 | |
| 687 | static int |
| 688 | AuthProxyGlobalHook(TSCont /* cont ATS_UNUSED */, TSEvent event, void *edata) |
no test coverage detected