Subversion 1.6.16

mod_authz_svn.h

Go to the documentation of this file.
00001 /**
00002  * @copyright
00003  * ====================================================================
00004  * Copyright (c) 2007 CollabNet.  All rights reserved.
00005  *
00006  * This software is licensed as described in the file COPYING, which
00007  * you should have received as part of this distribution.  The terms
00008  * are also available at http://subversion.tigris.org/license-1.html.
00009  * If newer versions of this license are posted there, you may use a
00010  * newer version instead, at your option.
00011  *
00012  * This software consists of voluntary contributions made by many
00013  * individuals.  For exact contribution history, see the revision
00014  * history and logs, available at http://subversion.tigris.org/.
00015  * ====================================================================
00016  * @endcopyright
00017  *
00018  * @file mod_authz_svn.h
00019  * @brief Subversion authorization extensions for mod_dav_svn
00020  */
00021 
00022 #ifndef MOD_AUTHZ_SVN_H
00023 #define MOD_AUTHZ_SVN_H
00024 
00025 #include <httpd.h>
00026 
00027 #ifdef __cplusplus
00028 extern "C" {
00029 #endif /* __cplusplus */
00030 
00031 /*
00032  * mod_dav_svn to mod_authz_svn bypass mechanism
00033  */
00034 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_GRP "dav2authz_subreq_bypass"
00035 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_NAME "mod_authz_svn_subreq_bypass"
00036 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_VER "00.00a"
00037 typedef int (*authz_svn__subreq_bypass_func_t)(request_rec *r,
00038                                               const char *repos_path,
00039                                               const char *repos_name);
00040 
00041 #ifdef __cplusplus
00042 }
00043 #endif /* __cplusplus */
00044 
00045 #endif
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines