mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-15 11:25:46 -05:00
37 lines
778 B
C
37 lines
778 B
C
/* rbacacl.c - RBAC ACL */
|
|
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
* Public License.
|
|
*
|
|
* A copy of this license is available in the file LICENSE in the
|
|
* top-level directory of the distribution or, alternatively, at
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
*/
|
|
/* ACKNOWLEDGEMENTS:
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include "slap.h"
|
|
#include "slap-config.h"
|
|
#include "lutil.h"
|
|
|
|
#include "rbac.h"
|
|
|
|
int
|
|
rbac_create_session_acl_check( struct berval *sessid, rbac_user_t *userp )
|
|
{
|
|
int rc = LDAP_SUCCESS;
|
|
|
|
return rc;
|
|
}
|