Apache HTTPD
providers.c
Go to the documentation of this file.
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
17#include "apr_pools.h"
18#include "apr_hash.h"
19#include "ap_provider.h"
20#include "mod_dav.h"
21
22#define DAV_PROVIDER_GROUP "dav"
23
25 const dav_provider *provider)
26{
28}
29
34
41
46
47
54
Apache Provider API.
APR Hash Tables.
APR memory allocation.
apr_status_t ap_register_provider(apr_pool_t *pool, const char *provider_group, const char *provider_name, const char *provider_version, const void *provider)
Definition provider.c:35
void * ap_lookup_provider(const char *provider_group, const char *provider_name, const char *provider_version)
Definition provider.c:99
#define DAV_RESOURCE_TYPE_GROUP
Definition mod_dav.h:2653
void dav_resource_type_provider_register(apr_pool_t *p, const char *name, const dav_resource_type_provider *provider)
Definition providers.c:48
const dav_provider * dav_lookup_provider(const char *name)
Definition providers.c:30
const dav_resource_type_provider * dav_get_resource_type_providers(const char *name)
Definition providers.c:55
void dav_register_provider(apr_pool_t *p, const char *name, const dav_provider *provider)
Definition providers.c:24
#define DAV_OPTIONS_EXTENSION_GROUP
Definition mod_dav.h:2620
void dav_options_provider_register(apr_pool_t *p, const char *name, const dav_options_provider *provider)
Definition providers.c:35
#define DAV_DECLARE(type)
Definition mod_dav.h:85
const dav_options_provider * dav_get_options_providers(const char *name)
Definition providers.c:42
apr_pool_t * p
Definition md_event.c:32
DAV extension module for Apache 2.0.*.
#define DAV_PROVIDER_GROUP
Definition providers.c:22
char * name