| 851 | } |
| 852 | |
| 853 | TSRemapStatus |
| 854 | TSRemapDoRemap(void *instance, TSHttpTxn txn, TSRemapRequestInfo * /* rri ATS_UNUSED */) |
| 855 | { |
| 856 | AuthOptions *options = static_cast<AuthOptions *>(instance); |
| 857 | |
| 858 | TSUserArgSet(txn, AuthTaggedRequestArg, options); |
| 859 | TSHttpTxnHookAdd(txn, TS_HTTP_POST_REMAP_HOOK, AuthOsDnsContinuation); |
| 860 | |
| 861 | return TSREMAP_NO_REMAP; |
| 862 | } |
| 863 | |
| 864 | // vim: set ts=4 sw=4 et : |
nothing calls this directly
no test coverage detected