[go: up one dir, main page]

Menu

[r456]: / tags / 0.6.4 / src / ignore.c  Maximize  Restore  History

Download this file

140 lines (108 with data), 3.0 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
* -------------------------------------------------------
* Copyright (C) 2002-2007 Tommi Saviranta <wnd@iki.fi>
* (C) 1998-2002 Sebastian Kienzl <zap@riot.org>
* -------------------------------------------------------
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* ifdef HAVE_CONFIG_H */
#ifdef CTCPREPLIES
#include "ignore.h"
#include "common.h"
#include "table.h"
#include "etc.h"
#include <stdlib.h>
typedef struct {
char *hostname;
int ttl;
int type;
} ignore_type;
typedef struct {
ignore_type **data;
int amount;
} ignores_type;
ignores_type ignores;
void
ignore_add(const char *hostname, int ttl, int type)
{
int i, indx;
if (hostname == NULL) return;
/* Already in table ? */
for (i = 0; i < ignores.amount; i++) {
if (ignores.data[i] != NULL
&& xstrcasecmp(ignores.data[i]->hostname,
hostname) == 0
&& ignores.data[i]->type == type) {
return;
}
}
ignores.data = (ignore_type **) table_add_item((void **) ignores.data,
sizeof(ignore_type), &ignores.amount, &indx);
ignores.data[indx]->hostname = xstrdup(hostname);
ignores.data[indx]->ttl = ttl;
ignores.data[indx]->type = type;
} /* void ignore_add(const char *hostname, int ttl, int type) */
void
ignore_del(const char *hostname)
{
int i;
for (i = 0; i < ignores.amount; i++) {
if (ignores.data[i] != NULL
&& (xstrcasecmp(ignores.data[i]->hostname,
hostname) == 0)) {
xfree(ignores.data[i]->hostname);
ignores.data = (ignore_type **)
table_rem_item((void **) ignores.data,
i, &ignores.amount);
}
}
} /* void ignore_del(const char *hostname) */
static void
ignore_del_by_number(int i)
{
if (i < ignores.amount && ignores.data[i] != NULL) {
xfree(ignores.data[i]->hostname);
ignores.data = (ignore_type **)
table_rem_item((void **) ignores.data,
i, &ignores.amount);
}
} /* void ignore_del_by_number(int i) */
void
ignores_process(void)
{
int i;
for (i = 0; i < ignores.amount; i++) {
if (ignores.data[i] != NULL) {
if (ignores.data[i]->ttl != 0) { /* > 0 */
ignores.data[i]->ttl--;
} else {
ignore_del_by_number(i);
}
}
}
} /* void ignores_process(void) */
int
is_ignore(const char *hostname, int type)
{
int i;
for (i = 0; i < ignores.amount; i++) {
if (ignores.data[i] != NULL
&& (xstrcasecmp(ignores.data[i]->hostname,
hostname) == 0)
&& (ignores.data[i]->type == type)) {
return 1;
}
}
return 0;
} /* int is_ignore(const char *hostname, int type) */
#endif /* ifdef CTCPREPLIES */