/* 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
*
*
* 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.
*/
/**
* @file repos.h
* @brief Declarations for the filesystem repository implementation
*
* @addtogroup MOD_DAV
* @{
*/
#ifndef _DAV_FS_REPOS_H_
#define _DAV_FS_REPOS_H_
/* the subdirectory to hold all DAV-related information for a directory */
/* ensure that our state subdirectory is present */
/* return the storage pool associated with a resource */
/* return the full pathname for a resource */
/* return the directory and filename for a resource */
const char **dirpath,
const char **fname);
/* return the list of locknull members in this resource's directory */
dav_buffer *pbuf);
/* DBM functions used by the repository and locking providers */
extern const dav_hooks_db dav_hooks_db_dbm;
/* where is the lock database located? */
const char *dav_get_lockdb_path(const request_rec *r);
const dav_hooks_liveprop **hooks);
void dav_fs_register(apr_pool_t *p);
#endif /* _DAV_FS_REPOS_H_ */
/** @} */