mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00

- Avoid some memory allocation and work when TRACE1 is not activated - fix typo in include guard - indent - No need to lower the string before removing the path, it is just a waste of time... - Save a few cycles trunk patch: http://svn.apache.org/r1451478 http://svn.apache.org/r1514215 http://svn.apache.org/r1452195 http://svn.apache.org/r1517025 http://svn.apache.org/r1517045 Submitted by: jailletc36 Reviewed by: jim, minfrin git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1523248 13f79535-47bb-0310-9956-ffa450edef68
25 lines
995 B
C
25 lines
995 B
C
/* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
* (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef MOD_OPTIONAL_HOOK_EXPORT_H
|
|
#define MOD_OPTIONAL_HOOK_EXPORT_H
|
|
|
|
#include "ap_config.h"
|
|
|
|
AP_DECLARE_HOOK(int,optional_hook_test,(const char *))
|
|
|
|
#endif /* def MOD_OPTIONAL_HOOK_EXPORT_H */
|