Subversion
|
00001 /** 00002 * @copyright 00003 * ==================================================================== 00004 * Licensed to the Apache Software Foundation (ASF) under one 00005 * or more contributor license agreements. See the NOTICE file 00006 * distributed with this work for additional information 00007 * regarding copyright ownership. The ASF licenses this file 00008 * to you under the Apache License, Version 2.0 (the 00009 * "License"); you may not use this file except in compliance 00010 * with the License. You may obtain a copy of the License at 00011 * 00012 * http://www.apache.org/licenses/LICENSE-2.0 00013 * 00014 * Unless required by applicable law or agreed to in writing, 00015 * software distributed under the License is distributed on an 00016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 00017 * KIND, either express or implied. See the License for the 00018 * specific language governing permissions and limitations 00019 * under the License. 00020 * ==================================================================== 00021 * @endcopyright 00022 * 00023 * @file mod_authz_svn.h 00024 * @brief Subversion authorization extensions for mod_dav_svn 00025 */ 00026 00027 #ifndef MOD_AUTHZ_SVN_H 00028 #define MOD_AUTHZ_SVN_H 00029 00030 #include <httpd.h> 00031 00032 #ifdef __cplusplus 00033 extern "C" { 00034 #endif /* __cplusplus */ 00035 00036 /* 00037 * mod_dav_svn to mod_authz_svn bypass mechanism 00038 */ 00039 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_GRP "dav2authz_subreq_bypass" 00040 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_NAME "mod_authz_svn_subreq_bypass" 00041 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_VER "00.00a" 00042 typedef int (*authz_svn__subreq_bypass_func_t)(request_rec *r, 00043 const char *repos_path, 00044 const char *repos_name); 00045 00046 #ifdef __cplusplus 00047 } 00048 #endif /* __cplusplus */ 00049 00050 #endif