⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 overlays.c

📁 ldap服务器源码
💻 C
字号:
/* overlays.c - Static overlay framework *//* $OpenLDAP: pkg/ldap/servers/slapd/overlays/overlays.c,v 1.12.2.9 2007/01/02 21:44:08 kurt Exp $ *//* This work is part of OpenLDAP Software <http://www.openldap.org/>. * * Copyright 2003-2007 The OpenLDAP Foundation. * Copyright 2003 by Howard Chu. * 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: * This work was initially developed by Howard Chu for inclusion in * OpenLDAP Software. */#include "portable.h"#include "slap.h"extern OverlayInit	slap_oinfo[];intoverlay_init(void){	int i, rc = 0;	for ( i= 0 ; slap_oinfo[i].ov_type; i++ ) {		rc = slap_oinfo[i].ov_init();		if ( rc ) {			Debug( LDAP_DEBUG_ANY,				"%s overlay setup failed, err %d\n",				slap_oinfo[i].ov_type, rc, 0 );			break;		}	}	return rc;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -