Return true if the given request was tagged by a remap rule as needing authorization.
| 671 | // Return true if the given request was tagged by a remap rule as needing |
| 672 | // authorization. |
| 673 | static bool |
| 674 | AuthRequestIsTagged(TSHttpTxn txn) |
| 675 | { |
| 676 | return AuthTaggedRequestArg != -1 && TSUserArgGet(txn, AuthTaggedRequestArg) != nullptr; |
| 677 | } |
| 678 | |
| 679 | // Return true if the internal requests can be cached. |
| 680 | static bool |
no test coverage detected