Blame os/netware/modules.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
/* modules.c --- major modules compiled into Apache for NetWare.
Packit 90a5c9
 * Only insert an entry for a module if it must be compiled into
Packit 90a5c9
 * the core server
Packit 90a5c9
 */
Packit 90a5c9
Packit 90a5c9
Packit 90a5c9
#include "httpd.h"
Packit 90a5c9
#include "http_config.h"
Packit 90a5c9
Packit 90a5c9
extern module core_module;
Packit 90a5c9
extern module mpm_netware_module;
Packit 90a5c9
extern module http_module;
Packit 90a5c9
extern module so_module;
Packit 90a5c9
extern module mime_module;
Packit 90a5c9
extern module authn_core_module;
Packit 90a5c9
extern module authz_core_module;
Packit 90a5c9
extern module authz_host_module;
Packit 90a5c9
extern module negotiation_module;
Packit 90a5c9
extern module include_module;
Packit 90a5c9
extern module dir_module;
Packit 90a5c9
extern module alias_module;
Packit 90a5c9
extern module env_module;
Packit 90a5c9
extern module log_config_module;
Packit 90a5c9
extern module setenvif_module;
Packit 90a5c9
extern module watchdog_module;
Packit 90a5c9
#ifdef USE_WINSOCK
Packit 90a5c9
extern module nwssl_module;
Packit 90a5c9
#endif
Packit 90a5c9
extern module netware_module;
Packit 90a5c9
Packit 90a5c9
module *ap_prelinked_modules[] = {
Packit 90a5c9
  &core_module, /* core must come first */
Packit 90a5c9
  &mpm_netware_module,
Packit 90a5c9
  &http_module,
Packit 90a5c9
  &so_module,
Packit 90a5c9
  &mime_module,
Packit 90a5c9
  &authn_core_module,
Packit 90a5c9
  &authz_core_module,
Packit 90a5c9
  &authz_host_module,
Packit 90a5c9
  &negotiation_module,
Packit 90a5c9
  &include_module,
Packit 90a5c9
  &dir_module,
Packit 90a5c9
  &alias_module,
Packit 90a5c9
  &env_module,
Packit 90a5c9
  &log_config_module,
Packit 90a5c9
  &setenvif_module,
Packit 90a5c9
  &watchdog_module,
Packit 90a5c9
#ifdef USE_WINSOCK
Packit 90a5c9
  &nwssl_module,
Packit 90a5c9
#endif
Packit 90a5c9
  &netware_module,
Packit 90a5c9
  NULL
Packit 90a5c9
};
Packit 90a5c9
Packit 90a5c9
ap_module_symbol_t ap_prelinked_module_symbols[] = {
Packit 90a5c9
  {"core_module", &core_module},
Packit 90a5c9
  {"mpm_netware_module", &mpm_netware_module},
Packit 90a5c9
  {"http_module", &http_module},
Packit 90a5c9
  {"so_module", &so_module},
Packit 90a5c9
  {"mime_module", &mime_module},
Packit 90a5c9
  {"authn_core_module", &authn_core_module},
Packit 90a5c9
  {"authz_core_module", &authz_core_module},
Packit 90a5c9
  {"authz_host_module", &authz_host_module},
Packit 90a5c9
  {"negotiation_module", &negotiation_module},
Packit 90a5c9
  {"include_module", &include_module},
Packit 90a5c9
  {"dir_module", &dir_module},
Packit 90a5c9
  {"alias_module", &alias_module},
Packit 90a5c9
  {"env_module", &env_module},
Packit 90a5c9
  {"log_config_module", &log_config_module},
Packit 90a5c9
  {"setenvif_module", &setenvif_module},
Packit 90a5c9
  {"watchdog module", &watchdog_module},
Packit 90a5c9
#ifdef USE_WINSOCK
Packit 90a5c9
  {"nwssl_module", &nwssl_module},
Packit 90a5c9
#endif
Packit 90a5c9
  {"netware_module", &netware_module},
Packit 90a5c9
  {NULL, NULL}
Packit 90a5c9
};
Packit 90a5c9
Packit 90a5c9
module *ap_preloaded_modules[] = {
Packit 90a5c9
  &core_module,
Packit 90a5c9
  &mpm_netware_module,
Packit 90a5c9
  &http_module,
Packit 90a5c9
  &so_module,
Packit 90a5c9
  &mime_module,
Packit 90a5c9
  &authn_core_module,
Packit 90a5c9
  &authz_core_module,
Packit 90a5c9
  &authz_host_module,
Packit 90a5c9
  &negotiation_module,
Packit 90a5c9
  &include_module,
Packit 90a5c9
  &dir_module,
Packit 90a5c9
  &alias_module,
Packit 90a5c9
  &env_module,
Packit 90a5c9
  &log_config_module,
Packit 90a5c9
  &setenvif_module,
Packit 90a5c9
  &watchdog_module,
Packit 90a5c9
#ifdef USE_WINSOCK
Packit 90a5c9
  &nwssl_module,
Packit 90a5c9
#endif
Packit 90a5c9
  &netware_module,
Packit 90a5c9
  NULL
Packit 90a5c9
};