Subversion
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mod_authz_svn.h
Go to the documentation of this file.
1 /**
2  * @copyright
3  * ====================================================================
4  * Copyright (c) 2007 CollabNet. All rights reserved.
5  *
6  * This software is licensed as described in the file COPYING, which
7  * you should have received as part of this distribution. The terms
8  * are also available at http://subversion.tigris.org/license-1.html.
9  * If newer versions of this license are posted there, you may use a
10  * newer version instead, at your option.
11  *
12  * This software consists of voluntary contributions made by many
13  * individuals. For exact contribution history, see the revision
14  * history and logs, available at http://subversion.tigris.org/.
15  * ====================================================================
16  * @endcopyright
17  *
18  * @file mod_authz_svn.h
19  * @brief Subversion authorization extensions for mod_dav_svn
20  */
21 
22 #ifndef MOD_AUTHZ_SVN_H
23 #define MOD_AUTHZ_SVN_H
24 
25 #include <httpd.h>
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif /* __cplusplus */
30 
31 /*
32  * mod_dav_svn to mod_authz_svn bypass mechanism
33  */
34 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_GRP "dav2authz_subreq_bypass"
35 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_NAME "mod_authz_svn_subreq_bypass"
36 #define AUTHZ_SVN__SUBREQ_BYPASS_PROV_VER "00.00a"
37 typedef int (*authz_svn__subreq_bypass_func_t)(request_rec *r,
38  const char *repos_path,
39  const char *repos_name);
40 
41 #ifdef __cplusplus
42 }
43 #endif /* __cplusplus */
44 
45 #endif