mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.7 KiB
51 lines
1.7 KiB
/*
|
|
* Copyright (C) 2007 Tomasz Kojm <tkojm@clamav.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __MIRMAN_H
|
|
#define __MIRMAN_H
|
|
|
|
#include "libclamav/cltypes.h"
|
|
|
|
struct mirdat_ip {
|
|
uint32_t ip4; /* IPv4 address */
|
|
uint32_t atime; /* last access time */
|
|
uint32_t succ; /* number of successful downloads from this ip */
|
|
uint32_t fail; /* number of failures */
|
|
uint8_t ignore; /* ignore flag */
|
|
uint32_t ip6[4]; /* IPv6 address */
|
|
char res[16]; /* reserved */
|
|
};
|
|
|
|
struct mirdat {
|
|
uint8_t active;
|
|
unsigned int num;
|
|
uint32_t currip[4];
|
|
uint32_t af;
|
|
uint32_t dbflevel;
|
|
struct mirdat_ip *mirtab;
|
|
};
|
|
|
|
int mirman_read(const char *file, struct mirdat *mdat, uint8_t active);
|
|
int mirman_check(uint32_t *ip, int af, struct mirdat *mdat, struct mirdat_ip **md);
|
|
int mirman_update(uint32_t *ip, int af, struct mirdat *mdat, uint8_t broken);
|
|
void mirman_list(const struct mirdat *mdat);
|
|
void mirman_whitelist(struct mirdat *mdat, unsigned int mode);
|
|
int mirman_write(const char *file, struct mirdat *mdat);
|
|
void mirman_free(struct mirdat *mdat);
|
|
|
|
#endif
|
|
|