| 908 | } |
| 909 | |
| 910 | static int nwssl_hook_Fixup(request_rec *r) |
| 911 | { |
| 912 | if (!isSecure(r) && !isSecureUpgraded(r)) |
| 913 | return DECLINED; |
| 914 | |
| 915 | apr_table_setn(r->subprocess_env, "HTTPS", "on"); |
| 916 | |
| 917 | return DECLINED; |
| 918 | } |
| 919 | |
| 920 | static const char *nwssl_hook_http_scheme(const request_rec *r) |
| 921 | { |
nothing calls this directly
no test coverage detected