tidy out redundant exmeption stuff

This commit is contained in:
Mark 2005-01-24 22:31:39 +00:00
parent c27475cb94
commit 2cb6957c40

11
opsb.h
View file

@ -45,13 +45,9 @@ extern Bot *opsb_bot;
#define MAX_SCANS 100
/* max queue is the max amount of scans that may be concurrent and queued. */
#define MAX_QUEUE MAX_SCANS * 100
/* max no of exempt entries */
#define MAX_EXEMPTS 20
/* max no of ports to scan */
#define MAX_PORTS 50
#define MAXREASON 128
typedef struct scaninfo{
char who[MAXHOST];
int state;
@ -102,13 +98,6 @@ typedef struct cache_entry {
/* this is a list of cached scans */
list_t *cache;
typedef struct exemptinfo {
char host[MAXHOST];
int server;
char who[MAXNICK];
char reason[MAXREASON];
}exemptinfo;
typedef struct proxy_type {
int type;
char name[MAXNICK];