forked from h4ck3rm1k3/privoxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amiga.h
137 lines (125 loc) · 5.26 KB
/
amiga.h
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
#ifdef AMIGA
#ifndef AMIGA_H_INCLUDED
#define AMIGA_H_INCLUDED
#define AMIGA_H_VERSION "$Id: amiga.h,v 1.14 2011/09/04 11:10:56 fabiankeil Exp $"
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/amiga.h,v $
*
* Purpose : Amiga-specific declarations.
*
* Copyright : Written by and Copyright (C) 2001 the SourceForge
* Privoxy team. http://www.privoxy.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.
*
* The GNU General Public License should be included with
* this file. If not, you can view it at
* http://www.gnu.org/copyleft/gpl.html
* or write to the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************/
#define _KERNEL
#include <sys/socket.h>
#undef _KERNEL
#define __NOLIBBASE__
#define __NOGLOBALIFACE__
#include <proto/socket.h>
#undef __NOLIBBASE__
#undef __NOGLOBALIFACE__
#define __CONSTLIBBASEDECL__ const
#include <proto/exec.h>
#include <exec/tasks.h>
#include <proto/dos.h>
#include <dos/dostags.h>
struct UserData
{
#ifdef __amigaos4__
struct SocketIFace *si;
#else
struct Library *sb;
#endif
int eno;
};
#ifdef __amigaos4__
#define ISocket (((struct UserData *)(FindTask(NULL)->tc_UserData))->si)
#undef errno
#else
#define SocketBase ((struct Library *)(((struct UserData *)(FindTask(NULL)->tc_UserData))->sb))
#endif
#define errno (((struct UserData *)(FindTask(NULL)->tc_UserData))->eno)
#define select(a,b,c,d,e) WaitSelect(a,b,c,d,e,NULL)
#define inet_ntoa(x) Inet_NtoA(x.s_addr)
extern int childs;
extern struct Task *main_task;
void InitAmiga(void);
void amiga_exit(void);
void __memCleanUp(void);
SAVEDS ULONG server_thread(void);
#ifdef __amigaos4__
#define exit(x) \
{ \
if(main_task) \
{ \
if(main_task == FindTask(NULL)) \
{ \
while(childs) Delay(10*TICKS_PER_SECOND); exit(x); \
} \
else \
{ \
if (ISocket) \
{ \
struct Library *sb = ISocket->Data.LibBase; \
DropInterface((struct Interface *)ISocket); \
CloseLibrary(sb); \
} \
childs--; \
RemTask(NULL); \
} \
} \
else \
{ \
exit(x); \
} \
}
#else
#define exit(x) \
{ \
if(main_task) \
{ \
if(main_task == FindTask(NULL)) \
{ \
while(childs) Delay(10*TICKS_PER_SECOND); exit(x); \
} \
else \
{ \
CloseLibrary(SocketBase); \
childs--; \
RemTask(NULL); \
} \
} \
else \
{ \
exit(x); \
} \
}
#undef HAVE_RANDOM
#define h_errno 0
#define HAVE_TIMEGM
#define timegm(tm) mktime(tm)
#endif /* __amigaos4__ */
#undef EINTR
#define EINTR 0
#endif /* ndef AMIGA_H_INCLUDED */
#endif /* def AMIGA */