comparison dcclib/id2str.c @ 0:c7f6b056b673

First import of vendor version
author Peter Gervai <grin@grin.hu>
date Tue, 10 Mar 2009 13:49:58 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c7f6b056b673
1 /* Distributed Checksum Clearinghouse
2 *
3 * Copyright (c) 2008 by Rhyolite Software, LLC
4 *
5 * This agreement is not applicable to any entity which sells anti-spam
6 * solutions to others or provides an anti-spam solution as part of a
7 * security solution sold to other entities, or to a private network
8 * which employs the DCC or uses data provided by operation of the DCC
9 * but does not provide corresponding data to other users.
10 *
11 * Permission to use, copy, modify, and distribute this software without
12 * changes for any purpose with or without fee is hereby granted, provided
13 * that the above copyright notice and this permission notice appear in all
14 * copies and any distributed versions or copies are either unchanged
15 * or not called anything similar to "DCC" or "Distributed Checksum
16 * Clearinghouse".
17 *
18 * Parties not eligible to receive a license under this agreement can
19 * obtain a commercial license to use DCC by contacting Rhyolite Software
20 * at sales@rhyolite.com.
21 *
22 * A commercial license would be for Distributed Checksum and Reputation
23 * Clearinghouse software. That software includes additional features. This
24 * free license for Distributed ChecksumClearinghouse Software does not in any
25 * way grant permision to use Distributed Checksum and Reputation Clearinghouse
26 * software
27 *
28 * THE SOFTWARE IS PROVIDED "AS IS" AND RHYOLITE SOFTWARE, LLC DISCLAIMS ALL
29 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL RHYOLITE SOFTWARE, LLC
31 * BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
32 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
33 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
34 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
35 * SOFTWARE.
36 *
37 * Rhyolite Software DCC 1.3.103-1.15 $Revision$
38 */
39
40 #include "dcc_defs.h"
41 #include "dcc_xhdr.h"
42
43
44 const char *
45 id2str(char *buf, u_int buf_len, DCC_CLNT_ID id_auth)
46 {
47 switch (id_auth) {
48 case DCC_ID_INVALID:
49 STRLCPY(buf, DCC_XHDR_ID_INVALID, buf_len);
50 return buf;
51
52 case DCC_ID_WHITE:
53 *buf = '\0';
54 break;
55 case DCC_ID_COMP:
56 STRLCPY(buf, DCC_XHDR_ID_COMP, buf_len);
57 return buf;
58
59 case DCC_ID_SRVR_SIMPLE:
60 STRLCPY(buf, DCC_XHDR_ID_SIMPLE, buf_len);
61 return buf;
62 case DCC_ID_SRVR_REP_OK:
63 STRLCPY(buf, DCC_XHDR_ID_REP_OK, buf_len);
64 return buf;
65 case DCC_ID_SRVR_IGNORE:
66 STRLCPY(buf, DCC_XHDR_ID_IGNORE, buf_len);
67 return buf;
68 case DCC_ID_SRVR_ROGUE:
69 STRLCPY(buf, DCC_XHDR_ID_ROGUE, buf_len);
70 return buf;
71
72 default:
73 if (id_auth & DCC_SRVR_ID_AUTH)
74 snprintf(buf, buf_len, "auth %d",
75 id_auth & ~DCC_SRVR_ID_AUTH);
76 else
77 snprintf(buf, buf_len, "%d",
78 id_auth & ~DCC_SRVR_ID_AUTH);
79 }
80 return buf;
81 }