slp_filter.h

来自「SLP协议在linux下的实现。此版本为1.2.1版。官方网站为www.open」· C头文件 代码 · 共 74 行

H
74
字号
/******************************************************************* *  Description: encode/decode LDAP filters * *  Originated: 04-21-2001  *	Original Author: Mike Day - md@soft-hackle.net *  Project:  * *  $Header: /cvsroot/openslp/openslp/common/slp_filter.h,v 1.4 2002/09/10 04:38:25 mpeterson Exp $ * *  Copyright (C) Michael Day, 2001  * *  This program is free software; you can redistribute it and/or  *  modify it under the terms of the GNU General Public License  *  as published by the Free Software Foundation; either version 2  *  of the License, or (at your option) any later version.  * *  This program is distributed in the hope that it will be useful,  *  but WITHOUT ANY WARRANTY; without even the implied warranty of  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  *  GNU General Public License for more details.  * *  You should have received a copy of the GNU General Public License  *  along with this program; if not, write to the Free Software  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  *******************************************************************/#ifndef SLP_FILTER_H_INCLUDED#define SLP_FILTER_H_INCLUDED#include "slp_attr.h"typedef enum ldap_operator_types{    ldap_and = 259,    /* to match token values assigned in y_filter.h */    ldap_or,    ldap_not,    expr_eq,    expr_gt,    expr_lt,    expr_present,    expr_approx} ldapOperatorTypes;typedef struct ldap_filter_struct_head{    struct ldap_filter_struct_head  *next;    struct ldap_filter_struct_head  *prev;    int isHead;    int operator; } filterHead;typedef struct ldap_filter_struct{    struct ldap_filter_struct *next;    struct ldap_filter_struct *prev;    int isHead;    int operator;     int nestingLevel;    int logical_value;    filterHead children;    SLPAttrList attrs;} SLPLDAPFilter;SLPLDAPFilter *SLPAllocFilter(int operator);void SLPFreeFilter(SLPLDAPFilter *filter);void SLPFreeFilterList(SLPLDAPFilter *head, int static_flag);void SLPFreeFilterTree(SLPLDAPFilter *root);/*prototypes */SLPLDAPFilter *SLPDecodeLDAPFilter(const char *filter) ;#endif /*SLPDEFS_INCLUDE */

⌨️ 快捷键说明

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