Blame modules/test/mod_optional_fn_export.c

Packit 90a5c9
/* Licensed to the Apache Software Foundation (ASF) under one or more
Packit 90a5c9
 * contributor license agreements.  See the NOTICE file distributed with
Packit 90a5c9
 * this work for additional information regarding copyright ownership.
Packit 90a5c9
 * The ASF licenses this file to You under the Apache License, Version 2.0
Packit 90a5c9
 * (the "License"); you may not use this file except in compliance with
Packit 90a5c9
 * the License.  You may obtain a copy of the License at
Packit 90a5c9
 *
Packit 90a5c9
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit 90a5c9
 *
Packit 90a5c9
 * Unless required by applicable law or agreed to in writing, software
Packit 90a5c9
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit 90a5c9
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit 90a5c9
 * See the License for the specific language governing permissions and
Packit 90a5c9
 * limitations under the License.
Packit 90a5c9
 */
Packit 90a5c9
Packit 90a5c9
#include "httpd.h"
Packit 90a5c9
#include "http_config.h"
Packit 90a5c9
#include "http_log.h"
Packit 90a5c9
#include "mod_optional_fn_export.h"
Packit 90a5c9
Packit 90a5c9
/* The alert will note a strange mirror-image style resemblance to
Packit 90a5c9
 * mod_optional_hook_import.c. Yes, I _did_ mean import. Think about it.
Packit 90a5c9
 */
Packit 90a5c9
Packit 90a5c9
static int TestOptionalFn(const char *szStr)
Packit 90a5c9
{
Packit 90a5c9
    ap_log_error(APLOG_MARK,APLOG_ERR,OK,NULL, APLOGNO(01871)
Packit 90a5c9
                 "Optional function test said: %s",szStr);
Packit 90a5c9
Packit 90a5c9
    return OK;
Packit 90a5c9
}
Packit 90a5c9
Packit 90a5c9
static void ExportRegisterHooks(apr_pool_t *p)
Packit 90a5c9
{
Packit 90a5c9
    APR_REGISTER_OPTIONAL_FN(TestOptionalFn);
Packit 90a5c9
}
Packit 90a5c9
Packit 90a5c9
AP_DECLARE_MODULE(optional_fn_export) =
Packit 90a5c9
{
Packit 90a5c9
    STANDARD20_MODULE_STUFF,
Packit 90a5c9
    NULL,
Packit 90a5c9
    NULL,
Packit 90a5c9
    NULL,
Packit 90a5c9
    NULL,
Packit 90a5c9
    NULL,
Packit 90a5c9
    ExportRegisterHooks
Packit 90a5c9
};