overlays.c

来自「ldap服务器源码」· C语言 代码 · 共 45 行

C
45
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?