0
|
1 /* Distributed Checksum Clearinghouse |
|
2 * |
|
3 * server-IDs |
|
4 * |
|
5 * Copyright (c) 2008 by Rhyolite Software, LLC |
|
6 * |
|
7 * This agreement is not applicable to any entity which sells anti-spam |
|
8 * solutions to others or provides an anti-spam solution as part of a |
|
9 * security solution sold to other entities, or to a private network |
|
10 * which employs the DCC or uses data provided by operation of the DCC |
|
11 * but does not provide corresponding data to other users. |
|
12 * |
|
13 * Permission to use, copy, modify, and distribute this software without |
|
14 * changes for any purpose with or without fee is hereby granted, provided |
|
15 * that the above copyright notice and this permission notice appear in all |
|
16 * copies and any distributed versions or copies are either unchanged |
|
17 * or not called anything similar to "DCC" or "Distributed Checksum |
|
18 * Clearinghouse". |
|
19 * |
|
20 * Parties not eligible to receive a license under this agreement can |
|
21 * obtain a commercial license to use DCC by contacting Rhyolite Software |
|
22 * at sales@rhyolite.com. |
|
23 * |
|
24 * A commercial license would be for Distributed Checksum and Reputation |
|
25 * Clearinghouse software. That software includes additional features. This |
|
26 * free license for Distributed ChecksumClearinghouse Software does not in any |
|
27 * way grant permision to use Distributed Checksum and Reputation Clearinghouse |
|
28 * software |
|
29 * |
|
30 * THE SOFTWARE IS PROVIDED "AS IS" AND RHYOLITE SOFTWARE, LLC DISCLAIMS ALL |
|
31 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
|
32 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL RHYOLITE SOFTWARE, LLC |
|
33 * BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES |
|
34 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, |
|
35 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
|
36 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
|
37 * SOFTWARE. |
|
38 * |
|
39 * Rhyolite Software DCC 1.3.103-1.29 $Revision$ |
|
40 */ |
|
41 |
|
42 #ifndef DCC_IDS_H |
|
43 #define DCC_IDS_H |
|
44 |
|
45 /* IDs file used by server, server utilities, and cdcc */ |
|
46 extern DCC_PATH ids_path; |
|
47 extern time_t ids_mtime; |
|
48 #define IDS_NM_DEF "ids" |
|
49 |
|
50 |
|
51 /* authenticated client database */ |
|
52 typedef u_char ID_TBL_FLGS; |
|
53 typedef struct id_tbl { |
|
54 struct id_tbl *fwd; |
|
55 DCC_CLNT_ID id; |
|
56 time_t delay_us; |
|
57 # define DCC_ANON_DELAY_US_DEF (50*1000) |
|
58 # define DCC_ANON_DELAY_US_BLACKLIST DCC_ANON_DELAY_MAX |
|
59 u_int delay_inflate; |
|
60 # define DCC_ANON_INFLATE_OFF ((u_int)(-1)) |
|
61 ID_TBL_FLGS flags; |
|
62 # define ID_FLG_SETTINGS 0x01 /* not just a placeholder */ |
|
63 # define ID_FLG_RPT_OK 0x02 /* override dccd -Q */ |
|
64 u_char srvr_type; /* DCC_ID_SRVR_* */ |
|
65 DCC_PASSWD cur_passwd; |
|
66 DCC_PASSWD next_passwd; |
|
67 } ID_TBL; |
|
68 |
|
69 extern u_char parse_dccd_delay(DCC_EMSG, time_t *, u_int *, |
|
70 const char *, const char *, int); |
|
71 extern ID_TBL *find_id_tbl(DCC_CLNT_ID); |
|
72 extern ID_TBL *add_id_tbl(DCC_CLNT_ID); |
|
73 extern ID_TBL *enum_ids(ID_TBL *); |
|
74 extern u_char set_ids_path(DCC_EMSG, const char *); |
|
75 extern int load_ids(DCC_EMSG, DCC_CLNT_ID, const ID_TBL **, u_char); |
|
76 |
|
77 #endif /* DCC_IDS_H */ |