piler/src/av.h
Janos SUTO 950211687f src: refactoring
Signed-off-by: Janos SUTO <sj@acts.hu>
2017-08-08 15:34:45 +02:00

26 lines
336 B
C

/*
* av.h, SJ
*/
#ifndef _AV_H
#define _AV_H
#include "defs.h"
#include "cfg.h"
#define AV_OK 200
#define AV_VIRUS 403
#define AV_ERROR 501
// clamd stuff
#define CLAMD_RESP_CLEAN "OK"
#define CLAMD_RESP_INFECTED "FOUND"
#define CLAMD_RESP_ERROR "ERROR"
int clamd_scan(char *tmpfile, struct config *cfg);
#endif /* _AV_H */