Mercurial > pidgin
annotate src/protocols/zephyr/zephyr.h @ 11029:7af7d234e1e0
[gaim-migrate @ 12908]
Fix the account dialog to only show proxy settings if a proxy is set
committer: Tailor Script <tailor@pidgin.im>
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Sat, 25 Jun 2005 19:38:56 +0000 |
parents | 5727afad0fb8 |
children | 64895571248f |
rev | line source |
---|---|
2086 | 1 /* This file is part of the Project Athena Zephyr Notification System. |
2 * It contains global definitions | |
3 * | |
4 * Created by: Robert French | |
5 * | |
6 * $Source$ | |
7475 | 7 * $Author: thekingant $ |
10867 | 8 * $Id: zephyr.h 12553 2005-04-25 01:53:01Z thekingant $ |
2086 | 9 * |
10 * Copyright (c) 1987,1988,1991 by the Massachusetts Institute of | |
11 * Technology. For copying and distribution information, see the | |
12 * file "mit-copyright.h". | |
13 */ | |
14 | |
15 #ifndef __ZEPHYR_H__ | |
16 #define __ZEPHYR_H__ | |
17 | |
18 #include <config.h> | |
19 | |
20 #include <sys/types.h> | |
21 #include <sys/time.h> | |
22 | |
10867 | 23 #include <zephyr_err.h> |
2086 | 24 |
25 #ifndef IPPROTO_MAX /* Make sure not already included */ | |
10867 | 26 #ifndef WIN32 |
2086 | 27 #include <netinet/in.h> |
28 #endif | |
10867 | 29 #endif |
2086 | 30 |
31 /* Use __STDC__ to guess whether we can use stdarg, prototypes, and const. | |
32 * This is a public header file, so autoconf can't help us here. */ | |
33 #ifdef __STDC__ | |
34 # include <stdarg.h> | |
35 # define ZP(x) x | |
36 # define ZCONST const | |
37 #else | |
38 # define ZP(x) () | |
39 # define ZCONST | |
40 #endif | |
41 | |
10867 | 42 #ifdef WIN32 |
43 /* this really should be uint32_t */ | |
44 /*typedef unsigned int in_addr_t; | |
45 struct in_addr | |
46 { | |
47 in_addr_t s_addr; | |
48 }; */ | |
49 #include <winsock2.h> | |
50 #endif | |
51 | |
2086 | 52 /* Service names */ |
53 #define HM_SVCNAME "zephyr-hm" | |
54 #define HM_SRV_SVCNAME "zephyr-hm-srv" | |
55 #define SERVER_SVCNAME "zephyr-clt" | |
56 #define SERVER_SERVICE "zephyr" | |
57 #define SERVER_INSTANCE "zephyr" | |
58 | |
59 #define ZVERSIONHDR "ZEPH" | |
60 #define ZVERSIONMAJOR 0 | |
61 #define ZVERSIONMINOR 2 | |
62 | |
63 #define Z_MAXPKTLEN 1024 | |
64 #define Z_MAXHEADERLEN 800 | |
65 #define Z_MAXOTHERFIELDS 10 /* Max unknown fields in ZNotice_t */ | |
66 #define Z_NUMFIELDS 17 | |
67 | |
68 /* Authentication levels returned by ZCheckAuthentication */ | |
69 #define ZAUTH_FAILED (-1) | |
70 #define ZAUTH_YES 1 | |
71 #define ZAUTH_NO 0 | |
72 | |
73 typedef char ZPacket_t[Z_MAXPKTLEN]; | |
74 | |
75 /* Packet type */ | |
76 typedef enum { | |
77 UNSAFE, UNACKED, ACKED, HMACK, HMCTL, SERVACK, SERVNAK, CLIENTACK, STAT | |
78 } ZNotice_Kind_t; | |
79 extern ZCONST char *ZNoticeKinds[9]; | |
80 | |
81 /* Unique ID format */ | |
82 typedef struct _ZUnique_Id_t { | |
83 struct in_addr zuid_addr; | |
84 struct timeval tv; | |
85 } ZUnique_Id_t; | |
86 | |
87 /* Checksum */ | |
88 typedef unsigned long ZChecksum_t; | |
89 | |
90 /* Notice definition */ | |
91 typedef struct _ZNotice_t { | |
92 char *z_packet; | |
93 char *z_version; | |
94 ZNotice_Kind_t z_kind; | |
95 ZUnique_Id_t z_uid; | |
96 #define z_sender_addr z_uid.zuid_addr | |
97 struct timeval z_time; | |
98 unsigned short z_port; | |
99 int z_auth; | |
100 int z_checked_auth; | |
101 int z_authent_len; | |
102 char *z_ascii_authent; | |
103 char *z_class; | |
7261 | 104 const char *z_class_inst; |
2086 | 105 char *z_opcode; |
106 char *z_sender; | |
5136 | 107 const char *z_recipient; |
2086 | 108 char *z_default_format; |
109 char *z_multinotice; | |
110 ZUnique_Id_t z_multiuid; | |
111 ZChecksum_t z_checksum; | |
112 int z_num_other_fields; | |
113 char *z_other_fields[Z_MAXOTHERFIELDS]; | |
7475 | 114 void *z_message; |
2086 | 115 int z_message_len; |
116 } ZNotice_t; | |
117 | |
118 /* Subscription structure */ | |
119 typedef struct _ZSubscriptions_t { | |
120 char *zsub_recipient; | |
121 char *zsub_class; | |
122 char *zsub_classinst; | |
123 } ZSubscription_t; | |
124 | |
125 /* Function return code */ | |
126 typedef int Code_t; | |
127 | |
128 /* Locations structure */ | |
129 typedef struct _ZLocations_t { | |
130 char *host; | |
131 char *time; | |
132 char *tty; | |
133 } ZLocations_t; | |
134 | |
135 typedef struct _ZAsyncLocateData_t { | |
136 char *user; | |
137 ZUnique_Id_t uid; | |
138 char *version; | |
139 } ZAsyncLocateData_t; | |
140 | |
141 /* for ZSetDebug */ | |
142 #ifdef Z_DEBUG | |
143 void (*__Z_debug_print) ZP((ZCONST char *fmt, va_list args, void *closure)); | |
144 void *__Z_debug_print_closure; | |
145 #endif | |
146 | |
147 int ZCompareUIDPred ZP((ZNotice_t *, void *)); | |
148 int ZCompareMultiUIDPred ZP((ZNotice_t *, void *)); | |
149 | |
150 /* Defines for ZFormatNotice, et al. */ | |
151 typedef Code_t (*Z_AuthProc) ZP((ZNotice_t*, char *, int, int *)); | |
152 Code_t ZMakeAuthentication ZP((ZNotice_t*, char *,int, int*)); | |
153 | |
154 char *ZGetSender ZP((void)); | |
155 char *ZGetVariable ZP((char *)); | |
156 Code_t ZSetVariable ZP((char *var, char *value)); | |
157 Code_t ZUnsetVariable ZP((char *var)); | |
158 int ZGetWGPort ZP((void)); | |
159 Code_t ZSetDestAddr ZP((struct sockaddr_in *)); | |
160 Code_t ZFormatNoticeList ZP((ZNotice_t*, char**, int, | |
161 char **, int*, Z_AuthProc)); | |
162 Code_t ZParseNotice ZP((char*, int, ZNotice_t *)); | |
163 Code_t ZReadAscii ZP((char*, int, unsigned char*, int)); | |
164 Code_t ZReadAscii32 ZP((char *, int, unsigned long *)); | |
165 Code_t ZReadAscii16 ZP((char *, int, unsigned short *)); | |
166 Code_t ZSendPacket ZP((char*, int, int)); | |
167 Code_t ZSendList ZP((ZNotice_t*, char *[], int, Z_AuthProc)); | |
168 Code_t ZSrvSendList ZP((ZNotice_t*, char*[], int, Z_AuthProc, Code_t (*)())); | |
169 Code_t ZSendNotice ZP((ZNotice_t *, Z_AuthProc)); | |
170 Code_t ZSrvSendNotice ZP((ZNotice_t*, Z_AuthProc, Code_t (*)())); | |
171 Code_t ZFormatNotice ZP((ZNotice_t*, char**, int*, Z_AuthProc)); | |
172 Code_t ZFormatSmallNotice ZP((ZNotice_t*, ZPacket_t, int*, Z_AuthProc)); | |
173 Code_t ZFormatRawNoticeList ZP((ZNotice_t *notice, char *list[], int nitems, | |
174 char **buffer, int *ret_len)); | |
175 Code_t ZLocateUser ZP((char *, int *, Z_AuthProc)); | |
7261 | 176 Code_t ZRequestLocations ZP((const char *, ZAsyncLocateData_t *, |
2086 | 177 ZNotice_Kind_t, Z_AuthProc)); |
2419
7ba69b8e0de5
[gaim-migrate @ 2432]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
178 Code_t ZhmStat ZP((struct in_addr *, ZNotice_t *)); |
2086 | 179 Code_t ZInitialize ZP((void)); |
180 Code_t ZSetServerState ZP((int)); | |
181 Code_t ZSetFD ZP((int)); | |
182 Code_t ZFormatSmallRawNotice ZP((ZNotice_t*, ZPacket_t, int*)); | |
183 int ZCompareUID ZP((ZUnique_Id_t*, ZUnique_Id_t*)); | |
184 Code_t ZSrvSendRawList ZP((ZNotice_t*, char*[], int, | |
185 Code_t (*)(ZNotice_t *, char *, int, int))); | |
186 Code_t ZMakeAscii ZP((char*, int, unsigned char*, int)); | |
187 Code_t ZMakeAscii32 ZP((char *, int, unsigned long)); | |
188 Code_t ZMakeAscii16 ZP((char *, int, unsigned int)); | |
189 Code_t ZReceivePacket ZP((ZPacket_t, int*, struct sockaddr_in*)); | |
190 Code_t ZCheckAuthentication ZP((ZNotice_t*, struct sockaddr_in*)); | |
2419
7ba69b8e0de5
[gaim-migrate @ 2432]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
191 Code_t ZSetLocation ZP((char *exposure)); |
7ba69b8e0de5
[gaim-migrate @ 2432]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
192 Code_t ZUnsetLocation ZP((void)); |
2086 | 193 Code_t ZFlushMyLocations ZP((void)); |
194 Code_t ZFormatRawNotice ZP((ZNotice_t *, char**, int *)); | |
195 Code_t ZRetrieveSubscriptions ZP((unsigned short, int*)); | |
196 Code_t ZOpenPort ZP((unsigned short *port)); | |
197 Code_t ZClosePort ZP((void)); | |
198 Code_t ZFlushLocations ZP((void)); | |
199 Code_t ZFlushSubscriptions ZP((void)); | |
200 Code_t ZFreeNotice ZP((ZNotice_t *notice)); | |
201 Code_t ZParseLocations ZP((register ZNotice_t *notice, | |
202 register ZAsyncLocateData_t *zald, int *nlocs, | |
203 char **user)); | |
204 int ZCompareALDPred ZP((ZNotice_t *notice, void *zald)); | |
205 void ZFreeALD ZP((register ZAsyncLocateData_t *zald)); | |
206 Code_t ZCheckIfNotice ZP((ZNotice_t *notice, struct sockaddr_in *from, | |
207 register int (*predicate) ZP((ZNotice_t *,void *)), | |
208 void *args)); | |
209 Code_t ZPeekPacket ZP((char **buffer, int *ret_len, | |
210 struct sockaddr_in *from)); | |
211 Code_t ZPeekNotice ZP((ZNotice_t *notice, struct sockaddr_in *from)); | |
212 Code_t ZIfNotice ZP((ZNotice_t *notice, struct sockaddr_in *from, | |
213 int (*predicate) ZP((ZNotice_t *, void *)), void *args)); | |
214 Code_t ZSubscribeTo ZP((ZSubscription_t *sublist, int nitems, | |
215 unsigned int port)); | |
216 Code_t ZSubscribeToSansDefaults ZP((ZSubscription_t *sublist, int nitems, | |
217 unsigned int port)); | |
218 Code_t ZUnsubscribeTo ZP((ZSubscription_t *sublist, int nitems, | |
219 unsigned int port)); | |
220 Code_t ZCancelSubscriptions ZP((unsigned int port)); | |
221 int ZPending ZP((void)); | |
222 Code_t ZReceiveNotice ZP((ZNotice_t *notice, struct sockaddr_in *from)); | |
223 #ifdef Z_DEBUG | |
224 void Z_debug ZP((ZCONST char *, ...)); | |
225 #endif | |
226 | |
227 #undef ZP | |
228 | |
229 /* Compatibility */ | |
230 #define ZNewLocateUser ZLocateUser | |
231 | |
232 /* Macros to retrieve Zephyr library values. */ | |
233 extern int __Zephyr_fd; | |
234 extern int __Q_CompleteLength; | |
235 extern struct sockaddr_in __HM_addr; | |
236 extern char __Zephyr_realm[]; | |
237 #define ZGetFD() __Zephyr_fd | |
238 #define ZQLength() __Q_CompleteLength | |
239 #define ZGetDestAddr() __HM_addr | |
240 #define ZGetRealm() __Zephyr_realm | |
241 | |
242 #ifdef Z_DEBUG | |
243 void ZSetDebug ZP((void (*)(ZCONST char *, va_list, void *), void *)); | |
244 #define ZSetDebug(proc,closure) (__Z_debug_print=(proc), \ | |
245 __Z_debug_print_closure=(closure), \ | |
246 (void) 0) | |
247 #else | |
248 #define ZSetDebug(proc,closure) | |
249 #endif | |
250 | |
251 /* Maximum queue length */ | |
252 #define Z_MAXQLEN 30 | |
253 | |
254 /* Successful function return */ | |
255 #define ZERR_NONE 0 | |
256 | |
257 /* Hostmanager wait time (in secs) */ | |
10867 | 258 #define HM_TIMEOUT 1 |
2086 | 259 |
260 /* Server wait time (in secs) */ | |
261 #define SRV_TIMEOUT 30 | |
262 | |
263 #define ZAUTH (ZMakeAuthentication) | |
264 #define ZNOAUTH ((Z_AuthProc)0) | |
265 | |
266 /* Packet strings */ | |
267 #define ZSRVACK_SENT "SENT" /* SERVACK codes */ | |
268 #define ZSRVACK_NOTSENT "LOST" | |
269 #define ZSRVACK_FAIL "FAIL" | |
270 | |
271 /* Server internal class */ | |
272 #define ZEPHYR_ADMIN_CLASS "ZEPHYR_ADMIN" /* Class */ | |
273 | |
274 /* Control codes sent to a server */ | |
275 #define ZEPHYR_CTL_CLASS "ZEPHYR_CTL" /* Class */ | |
276 | |
277 #define ZEPHYR_CTL_CLIENT "CLIENT" /* Inst: From client */ | |
278 #define CLIENT_SUBSCRIBE "SUBSCRIBE" /* Opcode: Subscribe */ | |
279 #define CLIENT_SUBSCRIBE_NODEFS "SUBSCRIBE_NODEFS" /* Opcode: Subscribe */ | |
280 #define CLIENT_UNSUBSCRIBE "UNSUBSCRIBE" /* Opcode: Unsubsubscribe */ | |
281 #define CLIENT_CANCELSUB "CLEARSUB" /* Opcode: Clear all subs */ | |
282 #define CLIENT_GIMMESUBS "GIMME" /* Opcode: Give me subs */ | |
283 #define CLIENT_GIMMEDEFS "GIMMEDEFS" /* Opcode: Give me default | |
284 * subscriptions */ | |
285 | |
286 #define ZEPHYR_CTL_HM "HM" /* Inst: From HM */ | |
287 #define HM_BOOT "BOOT" /* Opcode: Boot msg */ | |
288 #define HM_FLUSH "FLUSH" /* Opcode: Flush me */ | |
289 #define HM_DETACH "DETACH" /* Opcode: Detach me */ | |
290 #define HM_ATTACH "ATTACH" /* Opcode: Attach me */ | |
291 | |
292 /* Control codes send to a HostManager */ | |
293 #define HM_CTL_CLASS "HM_CTL" /* Class */ | |
294 | |
295 #define HM_CTL_SERVER "SERVER" /* Inst: From server */ | |
296 #define SERVER_SHUTDOWN "SHUTDOWN" /* Opcode: Server shutdown */ | |
297 #define SERVER_PING "PING" /* Opcode: PING */ | |
298 | |
299 #define HM_CTL_CLIENT "CLIENT" /* Inst: From client */ | |
300 #define CLIENT_FLUSH "FLUSH" /* Opcode: Send flush to srv */ | |
301 #define CLIENT_NEW_SERVER "NEWSERV" /* Opcode: Find new server */ | |
302 | |
303 /* HM Statistics */ | |
304 #define HM_STAT_CLASS "HM_STAT" /* Class */ | |
305 | |
306 #define HM_STAT_CLIENT "HMST_CLIENT" /* Inst: From client */ | |
307 #define HM_GIMMESTATS "GIMMESTATS" /* Opcode: get stats */ | |
308 | |
309 /* Login class messages */ | |
310 #define LOGIN_CLASS "LOGIN" /* Class */ | |
311 | |
312 /* Class Instance is principal of user who is logging in or logging out */ | |
313 | |
314 #define EXPOSE_NONE "NONE" /* Opcode: Not visible */ | |
315 #define EXPOSE_OPSTAFF "OPSTAFF" /* Opcode: Opstaff visible */ | |
316 #define EXPOSE_REALMVIS "REALM-VISIBLE" /* Opcode: Realm visible */ | |
317 #define EXPOSE_REALMANN "REALM-ANNOUNCED"/* Opcode: Realm announced */ | |
318 #define EXPOSE_NETVIS "NET-VISIBLE" /* Opcode: Net visible */ | |
319 #define EXPOSE_NETANN "NET-ANNOUNCED" /* Opcode: Net announced */ | |
320 #define LOGIN_USER_LOGIN "USER_LOGIN" /* Opcode: user login | |
321 (from server) */ | |
322 #define LOGIN_USER_LOGOUT "USER_LOGOUT" /* Opcode: User logout */ | |
323 #define LOGIN_USER_FLUSH "USER_FLUSH" /* Opcode: flush all locs */ | |
324 | |
325 /* Locate class messages */ | |
326 #define LOCATE_CLASS "USER_LOCATE" /* Class */ | |
327 | |
328 #define LOCATE_HIDE "USER_HIDE" /* Opcode: Hide me */ | |
329 #define LOCATE_UNHIDE "USER_UNHIDE" /* Opcode: Unhide me */ | |
330 | |
331 /* Class Instance is principal of user to locate */ | |
332 #define LOCATE_LOCATE "LOCATE" /* Opcode: Locate user */ | |
333 | |
334 /* WG_CTL class messages */ | |
335 #define WG_CTL_CLASS "WG_CTL" /* Class */ | |
336 | |
337 #define WG_CTL_USER "USER" /* Inst: User request */ | |
338 #define USER_REREAD "REREAD" /* Opcode: Reread desc file */ | |
339 #define USER_SHUTDOWN "SHUTDOWN" /* Opcode: Go catatonic */ | |
340 #define USER_STARTUP "STARTUP" /* Opcode: Come out of it */ | |
2419
7ba69b8e0de5
[gaim-migrate @ 2432]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
341 #define USER_EXIT "EXIT" /* Opcode: Exit the client */ |
2086 | 342 |
343 #endif /* __ZEPHYR_H__ */ |