Blame include/do_md.h

Packit Service 5e8d2a
/* aide, Advanced Intrusion Detection Environment
Packit Service 5e8d2a
 *
Packit Service 5e8d2a
 * Copyright (C) 1999-2002,2006,2010,2011 Rami Lehti, Pablo Virolainen,
Packit Service 5e8d2a
 * Richard van den Berg, Hannes von Haugwitz
Packit Service 5e8d2a
 * 
Packit Service 5e8d2a
 * $Header$
Packit Service 5e8d2a
 * This program is free software; you can redistribute it and/or
Packit Service 5e8d2a
 * modify it under the terms of the GNU General Public License as
Packit Service 5e8d2a
 * published by the Free Software Foundation; either version 2 of the
Packit Service 5e8d2a
 * License, or (at your option) any later version.
Packit Service 5e8d2a
 *
Packit Service 5e8d2a
 * This program is distributed in the hope that it will be useful, but
Packit Service 5e8d2a
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 5e8d2a
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Packit Service 5e8d2a
 * General Public License for more details.
Packit Service 5e8d2a
 *
Packit Service 5e8d2a
 * You should have received a copy of the GNU General Public License
Packit Service 5e8d2a
 * along with this program; if not, write to the Free Software
Packit Service 5e8d2a
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Packit Service 5e8d2a
 */
Packit Service 5e8d2a
 
Packit Service 5e8d2a
#ifndef _DO_MD_H_INCLUDED
Packit Service 5e8d2a
#define _DO_MD_H_INCLUDED
Packit Service 5e8d2a
#ifdef WITH_MHASH
Packit Service 5e8d2a
#include "mhash.h"
Packit Service 5e8d2a
#endif
Packit Service 5e8d2a
Packit Service 5e8d2a
#include "list.h"
Packit Service 5e8d2a
#include "db_config.h"
Packit Service 5e8d2a
Packit Service 5e8d2a
#define BUFSIZE 16384
Packit Service 5e8d2a
Packit Service 5e8d2a
list* do_md(list* file_lst,db_config* conf);
Packit Service 5e8d2a
Packit Service 5e8d2a
#ifdef WITH_ACL
Packit Service 5e8d2a
void acl2line(db_line* line);
Packit Service 5e8d2a
#endif
Packit Service 5e8d2a
Packit Service 5e8d2a
#ifdef WITH_XATTR
Packit Service 5e8d2a
void xattrs2line(db_line *line);
Packit Service 5e8d2a
#endif
Packit Service 5e8d2a
Packit Service 5e8d2a
#ifdef WITH_SELINUX
Packit Service 5e8d2a
void selinux2line(db_line *line);
Packit Service 5e8d2a
#endif
Packit Service 5e8d2a
Packit Service 5e8d2a
#ifdef WITH_E2FSATTRS
Packit Service 5e8d2a
void e2fsattrs2line(db_line* line);
Packit Service 5e8d2a
#endif
Packit Service 5e8d2a
Packit Service 5e8d2a
#endif /* _DO_MD_H_INCLUDED */