mod_optional_hook_export.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2. * contributor license agreements. See the NOTICE file distributed with
  3. * this work for additional information regarding copyright ownership.
  4. * The ASF licenses this file to You under the Apache License, Version 2.0
  5. * (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "httpd.h"
  17. #include "http_config.h"
  18. #include "mod_optional_hook_export.h"
  19. #include "http_protocol.h"
  20. AP_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(int,optional_hook_test,(const char *szStr),
  21. (szStr),OK,DECLINED)
  22. static int ExportLogTransaction(request_rec *r)
  23. {
  24. return ap_run_optional_hook_test(r->the_request);
  25. }
  26. static void ExportRegisterHooks(apr_pool_t *p)
  27. {
  28. ap_hook_log_transaction(ExportLogTransaction,NULL,NULL,APR_HOOK_MIDDLE);
  29. }
  30. module AP_MODULE_DECLARE_DATA optional_hook_export_module =
  31. {
  32. STANDARD20_MODULE_STUFF,
  33. NULL,
  34. NULL,
  35. NULL,
  36. NULL,
  37. NULL,
  38. ExportRegisterHooks
  39. };