1 /* Copyright (C) 2009 Trend Micro Inc. 2 * All right reserved. 3 * 4 * This program is a free software; you can redistribute it 5 * and/or modify it under the terms of the GNU General Public 6 * License (version 2) as published by the FSF - Free Software 7 * Foundation 8 */ 9 10 #ifndef __FTS_H 11 #define __FTS_H 12 13 #include "eventinfo.h" 14 15 /* FTS queues */ 16 #ifdef TESTRULE 17 #define FTS_QUEUE "queue/fts/fts-queue" 18 #define IG_QUEUE "queue/fts/ig-queue" 19 #else 20 #define FTS_QUEUE "/queue/fts/fts-queue" 21 #define IG_QUEUE "/queue/fts/ig-queue" 22 #endif 23 24 int FTS_Init(void); 25 void AddtoIGnore(Eventinfo *lf); 26 int IGnore(Eventinfo *lf); 27 int FTS(Eventinfo *lf); 28 29 #endif /* __FTS_H */ 30 31