config.c

来自「开放源码的ldap系统」· C语言 代码 · 共 44 行

C
44
字号
/* config.c - DNS SRV backend configuration file routine *//* $OpenLDAP: pkg/ldap/servers/slapd/back-dnssrv/config.c,v 1.3.2.2 2000/06/17 16:16:59 kurt Exp $ *//* * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */#include "portable.h"#include <stdio.h>#include <ac/string.h>#include <ac/socket.h>#include "slap.h"#include "external.h"intdnssrv_back_db_config(    BackendDB	*be,    const char	*fname,    int		lineno,    int		argc,    char	**argv ){	struct ldapinfo	*li = (struct ldapinfo *) be->be_private;	char *port;	if ( li == NULL ) {		fprintf( stderr, "%s: line %d: DNSSRV backend info is null!\n",		    fname, lineno );		return( 1 );	}	/* no configuration options (yet) */	{		fprintf( stderr,			"%s: line %d: unknown directive \"%s\""			" in DNSSRV database definition (ignored)\n",		    fname, lineno, argv[0] );	}	return 0;}

⌨️ 快捷键说明

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