root / trunk / src / dot / proxy / util.h

Revision 7618, 4.1 kB (checked in by BradNeuberg, 22 months ago)

Local and remote SVN repositories somehow became out of sync and corrupted -- re-adding these in

Line 
1/*
2Copyright (c) 2003-2006 by Juliusz Chroboczek
3
4Permission is hereby granted, free of charge, to any person obtaining a copy
5of this software and associated documentation files (the "Software"), to deal
6in the Software without restriction, including without limitation the rights
7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8copies of the Software, and to permit persons to whom the Software is
9furnished to do so, subject to the following conditions:
10
11The above copyright notice and this permission notice shall be included in
12all copies or substantial portions of the Software.
13
14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20THE SOFTWARE.
21*/
22
23/* These are Polipo's error codes.  They need to be positive integers,
24   and must not collide with possible errno values.
25   Starting at 2^16 should be safe enough. */
26
27#define E0 (1 << 16)
28#define E1 (2 << 16)
29#define E2 (3 << 16)
30#define E3 (4 << 16)
31#define EUNKNOWN (E0)
32#define EDOSHUTDOWN (E0 + 1)
33#define EDOGRACEFUL (E0 + 2)
34#define EDOTIMEOUT (E0 + 3)
35#define ECLIENTRESET (E0 + 4)
36#define ESYNTAX (E0 + 5)
37#define EREDIRECTOR (E0 + 6)
38#define EDNS_HOST_NOT_FOUND (E1)
39#define EDNS_NO_ADDRESS (E1 + 1)
40#define EDNS_NO_RECOVERY (E1 + 2)
41#define EDNS_TRY_AGAIN (E1 + 3)
42#define EDNS_INVALID (E1 + 4)
43#define EDNS_UNSUPPORTED (E1 + 5)
44#define EDNS_FORMAT (E1 + 6)
45#define EDNS_REFUSED (E1 + 7)
46#define EDNS_CNAME_LOOP (E1 + 8)
47#define ESOCKS_PROTOCOL (E2)
48/* These correspond to SOCKS status codes 91 through 93 */
49#define ESOCKS_REJECT_FAIL (E2 + 1)
50#define ESOCKS_REJECT_IDENTD (E2 + 2)
51#define ESOCKS_REJECT_UID_MISMATCH (E2 + 3)
52/* (ESOCKS5_BASE + n) corresponds to SOCKS5 status code n (0 to 8) */
53#define ESOCKS5_BASE (E3)
54
55typedef struct _IntRange {
56    int from;
57    int to;
58} IntRangeRec, *IntRangePtr;
59
60typedef struct _IntList {
61    int length;
62    int size;
63    IntRangePtr ranges;
64} IntListRec, *IntListPtr;
65
66char *strdup_n(const char *restrict buf, int n) ATTRIBUTE ((malloc));
67int snnprintf(char *restrict buf, int n, int len, const char *format, ...)
68     ATTRIBUTE ((format (printf, 4, 5)));
69int snnprint_n(char *restrict buf, int n, int len, const char *s, int slen);
70int strcmp_n(const char *string, const char *buf, int n) ATTRIBUTE ((pure));
71int digit(char) ATTRIBUTE ((const));
72int letter(char) ATTRIBUTE ((const));
73char lwr(char) ATTRIBUTE ((const));
74char* lwrcpy(char *restrict dst, const char *restrict src, int n);
75int lwrcmp(const char *as, const char *bs, int n) ATTRIBUTE ((pure));
76int strcasecmp_n(const char *string, const char *buf, int n)
77     ATTRIBUTE ((pure));
78int atoi_n(const char *restrict string, int n, int len, int *value_return);
79int isWhitespace(const char *string) ATTRIBUTE((pure));
80#ifndef HAVE_MEMRCHR
81void *memrchr(const void *s, int c, size_t n) ATTRIBUTE ((pure));
82#endif
83int h2i(char h) ATTRIBUTE ((const));
84char i2h(int i) ATTRIBUTE ((const));
85int log2_floor(int x) ATTRIBUTE ((const));
86int log2_ceil(int x) ATTRIBUTE ((const));
87char* vsprintf_a(const char *f, va_list args)
88    ATTRIBUTE ((malloc, format (printf, 1, 0)));
89char* sprintf_a(const char *f, ...)
90    ATTRIBUTE ((malloc, format (printf, 1, 2)));
91unsigned int hash(unsigned seed, const void *restrict key, int key_size,
92                  unsigned int hash_size)
93     ATTRIBUTE ((pure));
94char *pstrerror(int e);
95time_t mktime_gmt(struct tm *tm) ATTRIBUTE ((pure));
96AtomPtr expandTilde(AtomPtr filename);
97void do_daemonise(int noclose);
98void writePid(char *pidfile);
99int b64cpy(char *restrict dst, const char *restrict src, int n, int fss);
100int b64cmp(const char *restrict a, int an, const char *restrict b, int bn)
101    ATTRIBUTE ((pure));
102IntListPtr makeIntList(int size) ATTRIBUTE ((malloc));
103void destroyIntList(IntListPtr list);
104int intListMember(int n, IntListPtr list) ATTRIBUTE ((pure));
105int intListCons(int from, int to, IntListPtr list);
Note: See TracBrowser for help on using the browser.