842ae4bd224140319ae7feec1872b93dfd491143fielding/* Licensed to the Apache Software Foundation (ASF) under one or more
842ae4bd224140319ae7feec1872b93dfd491143fielding * contributor license agreements. See the NOTICE file distributed with
842ae4bd224140319ae7feec1872b93dfd491143fielding * this work for additional information regarding copyright ownership.
842ae4bd224140319ae7feec1872b93dfd491143fielding * The ASF licenses this file to You under the Apache License, Version 2.0
842ae4bd224140319ae7feec1872b93dfd491143fielding * (the "License"); you may not use this file except in compliance with
842ae4bd224140319ae7feec1872b93dfd491143fielding * the License. You may obtain a copy of the License at
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd *
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd * http://www.apache.org/licenses/LICENSE-2.0
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd *
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd * Unless required by applicable law or agreed to in writing, software
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd * distributed under the License is distributed on an "AS IS" BASIS,
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd * See the License for the specific language governing permissions and
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd * limitations under the License.
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd */
ce9621257ef9e54c1bbe5ad8a5f445a1f211c2dcnd
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding/* modules.c --- major modules compiled into Apache for Win32.
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding * Only insert an entry for a module if it must be compiled into
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding * the core server
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding */
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding#include "httpd.h"
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding#include "http_config.h"
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fieldingextern module core_module;
95db5a4aa11a83bd25a6e11b53dd62c0af243e92wroweextern module win32_module;
83bee7f569bee7534741915e173e6a7de9ddae81stoddardextern module mpm_winnt_module;
7c1827557873d94e3a0323172837fca1c3b27f6cwroweextern module http_module;
f6bd1c0924641e60dcc56cbaba27d3cb3ce4917erbbextern module so_module;
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding
c032b37ad682c1da5382258811e8e35a8ec0d78dwroweAP_DECLARE_DATA module *ap_prelinked_modules[] = {
7184de27ec1d62a83c41cdeac0953ca9fd661e8csf &core_module, /* core must come first */
95db5a4aa11a83bd25a6e11b53dd62c0af243e92wrowe &win32_module,
7b3590ada24130fe5d52ce7fbf98177e3d121a4cstoddard &mpm_winnt_module,
7c1827557873d94e3a0323172837fca1c3b27f6cwrowe &http_module,
f6bd1c0924641e60dcc56cbaba27d3cb3ce4917erbb &so_module,
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding NULL
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding};
9c27402f770d7b03b1d145214507cd05bce287c4wrowe
c2549f0b237ac86f3623a601a766969d805dbc2andap_module_symbol_t ap_prelinked_module_symbols[] = {
c2549f0b237ac86f3623a601a766969d805dbc2and {"core_module", &core_module},
c2549f0b237ac86f3623a601a766969d805dbc2and {"win32_module", &win32_module},
c2549f0b237ac86f3623a601a766969d805dbc2and {"mpm_winnt_module", &mpm_winnt_module},
c2549f0b237ac86f3623a601a766969d805dbc2and {"http_module", &http_module},
c2549f0b237ac86f3623a601a766969d805dbc2and {"so_module", &so_module},
c2549f0b237ac86f3623a601a766969d805dbc2and {NULL, NULL}
c2549f0b237ac86f3623a601a766969d805dbc2and};
c2549f0b237ac86f3623a601a766969d805dbc2and
c032b37ad682c1da5382258811e8e35a8ec0d78dwroweAP_DECLARE_DATA module *ap_preloaded_modules[] = {
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding &core_module,
95db5a4aa11a83bd25a6e11b53dd62c0af243e92wrowe &win32_module,
7b3590ada24130fe5d52ce7fbf98177e3d121a4cstoddard &mpm_winnt_module,
7c1827557873d94e3a0323172837fca1c3b27f6cwrowe &http_module,
f6bd1c0924641e60dcc56cbaba27d3cb3ce4917erbb &so_module,
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding NULL
09fe0b69d3d1e8c8041c9ce99ee77b8b44b5e3b1fielding};