Move chunk_queue stuff to own files chunk_queue.[ch].
[paraslash.git] / error.h
1 /*
2  * Copyright (C) 2006-2007 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file error.h list of error messages for all subsystems */
8
9 /** \cond list of all subsystems that support the shiny error facility */
10 enum para_subsystem {
11         SS_CLIENT,
12         SS_GUI,
13         SS_TIME,
14         SS_WAV,
15         SS_COMPRESS,
16         SS_CLOSE_ON_FORK,
17         SS_DAEMON,
18         SS_DCCP_SEND,
19         SS_RINGBUFFER,
20         SS_RECV,
21         SS_NET,
22         SS_ORTP_RECV,
23         SS_CLIENT_COMMON,
24         SS_AUDIOC,
25         SS_SCHED,
26         SS_AUDIOD,
27         SS_AUDIOD_COMMAND,
28         SS_EXEC,
29         SS_STDIN,
30         SS_STDOUT,
31         SS_SIGNAL,
32         SS_STRING,
33         SS_STAT,
34         SS_GRAB_CLIENT,
35         SS_HTTP_RECV,
36         SS_RECV_COMMON,
37         SS_FILTER_CHAIN,
38         SS_OGGDEC,
39         SS_FILTER,
40         SS_COMMAND,
41         SS_RANDOM_SELECTOR,
42         SS_PLAYLIST_SELECTOR,
43         SS_CRYPT,
44         SS_HTTP_SEND,
45         SS_ORTP_SEND,
46         SS_AFS,
47         SS_OGG_AFH,
48         SS_MP3_AFH,
49         SS_AAC_AFH,
50         SS_MP3DEC,
51         SS_AACDEC,
52         SS_AAC_COMMON,
53         SS_SERVER,
54         SS_VSS,
55         SS_MYSQL_SELECTOR,
56         SS_IPC,
57         SS_DCCP,
58         SS_DCCP_RECV,
59         SS_FD,
60         SS_WRITE,
61         SS_WRITE_COMMON,
62         SS_ALSA_WRITE,
63         SS_FILE_WRITE,
64         SS_OSX_WRITE,
65         SS_USER_LIST,
66         SS_CHUNK_QUEUE,
67         NUM_SS
68 };
69
70 /* these do not need error handling (yet) */
71 #define SERVER_ERRORS
72 #define CLIENT_ERRORS
73 #define WAV_ERRORS
74 #define COMPRESS_ERRORS
75 #define TIME_ERRORS
76 #define CLOSE_ON_FORK_ERRORS
77 #define DAEMON_ERRORS
78 #define ORTP_SEND_ERRORS
79 #define GUI_ERRORS
80 #define RINGBUFFER_ERRORS
81
82
83
84 extern const char **para_errlist[];
85 /** \endcond */
86
87 #define USER_LIST_ERRORS \
88         PARA_ERROR(USERLIST, "failed to open user list file"), \
89
90
91 #define OSX_WRITE_ERRORS \
92         PARA_ERROR(STREAM_FORMAT, "could not set stream format"), \
93         PARA_ERROR(ADD_CALLBACK, "can not add callback"), \
94         PARA_ERROR(OPEN_COMP, "OpenAComponent() error"), \
95         PARA_ERROR(UNIT_INIT, "AudioUnitInitialize() error"), \
96         PARA_ERROR(UNIT_START, "AudioUnitStart() error"), \
97         PARA_ERROR(DEFAULT_COMP, "can not find default audio output component"), \
98
99
100 #define AUDIOC_ERRORS \
101         PARA_ERROR(AUDIOC_SYNTAX, "audioc syntax error"), \
102         PARA_ERROR(AUDIOC_READ, "audioc read error"), \
103         PARA_ERROR(AUDIOC_WRITE, "audioc write error"), \
104         PARA_ERROR(INIT_SOCK_ADDR, "can not init socket"), \
105         PARA_ERROR(AUDIOC_CONNECT, "audioc connect error"), \
106         PARA_ERROR(AUDIOC_OVERRUN, "audioc buffer overrun"), \
107
108
109
110 #define CLIENT_COMMON_ERRORS \
111         PARA_ERROR(CLIENT_SYNTAX, "syntax error"), \
112         PARA_ERROR(INVALID_CHALLENGE, "did not receive valid challenge"), \
113         PARA_ERROR(NO_CONFIG, "config file not found"), \
114         PARA_ERROR(CLIENT_AUTH, "authentication failed"), \
115         PARA_ERROR(SERVER_EOF, "connection closed by para_server"), \
116         PARA_ERROR(INPUT_EOF, "end of input"), \
117         PARA_ERROR(HANDSHAKE_COMPLETE, ""), /* not really an error */ \
118
119
120 #define SCHED_ERRORS \
121         PARA_ERROR(TASK_KILLED, "task killed"), \
122         PARA_ERROR(NO_SUCH_TASK, "task not found"), \
123         PARA_ERROR(NOT_INITIALIZED, "scheduler not yet initialized"), \
124
125
126 #define STDIN_ERRORS \
127         PARA_ERROR(STDIN_READ, "failed to read from stdin"), \
128         PARA_ERROR(STDIN_EOF, "end of file"), \
129
130
131 #define STDOUT_ERRORS \
132         PARA_ERROR(STDOUT_WRITE, "failed to write to stdout"), \
133         PARA_ERROR(STDOUT_EOF, "end of file"), \
134
135
136 #define NET_ERRORS \
137         PARA_ERROR(SEND, "send error"), \
138         PARA_ERROR(RECV, "receive error"), \
139         PARA_ERROR(SOCKET, "socket error"), \
140         PARA_ERROR(CONNECT, "connect error"), \
141         PARA_ERROR(ACCEPT, "accept error"), \
142         PARA_ERROR(SETSOCKOPT, "failed to set socket options"), \
143         PARA_ERROR(BIND, "bind error"), \
144         PARA_ERROR(NAME_TOO_LONG, "name too long for struct sockaddr_un"), \
145         PARA_ERROR(CHMOD, "failed to set socket mode"), \
146         PARA_ERROR(SENDMSG, "sendmsg() failed"), \
147         PARA_ERROR(RECVMSG, "recvmsg() failed"), \
148         PARA_ERROR(SCM_CREDENTIALS, "did not receive SCM credentials"), \
149         PARA_ERROR(LISTEN, "listen error"), \
150         PARA_ERROR(RECV_PATTERN, "did not receive expected pattern"), \
151         PARA_ERROR(HOST_INFO, "gethostbyname() failed"), \
152
153
154 #define ORTP_RECV_ERRORS \
155         PARA_ERROR(MSG_TO_BUF, "failed to extract rtp packet"), \
156         PARA_ERROR(ORTP_SYNTAX, "ottp syntax error"), \
157         PARA_ERROR(TOO_MANY_BAD_CHUNKS, "too many consecutive bad chunks"), \
158         PARA_ERROR(INVALID_HEADER, "invalid header packet"), \
159         PARA_ERROR(OVERRUN, "outout buffer overrun"), \
160         PARA_ERROR(ORTP_RECV_EOF, "ortp_recv: end of file"), \
161
162
163 #define HTTP_RECV_ERRORS \
164         PARA_ERROR(HTTP_RECV_EOF, "http_recv: end of file"), \
165         PARA_ERROR(HTTP_RECV_OVERRUN, "http_recv: outout buffer overrun"), \
166
167
168 #define RECV_ERRORS \
169         PARA_ERROR(RECV_SYNTAX, "recv syntax error"), \
170
171
172 #define RECV_COMMON_ERRORS \
173
174
175 #define AUDIOD_ERRORS \
176         PARA_ERROR(NO_MORE_SLOTS, "no more empty slots"), \
177         PARA_ERROR(MISSING_COLON, "syntax error: missing colon"), \
178         PARA_ERROR(UNSUPPORTED_AUDIO_FORMAT, "given audio format not supported"), \
179         PARA_ERROR(SIGNAL_CAUGHT, "caught signal"), \
180
181
182 #define AUDIOD_COMMAND_ERRORS \
183         PARA_ERROR(CLIENT_WRITE, "client write error"), \
184         PARA_ERROR(AUDIOD_SYNTAX, "syntax error"), \
185         PARA_ERROR(UCRED_PERM, "permission denied"), \
186         PARA_ERROR(INVALID_AUDIOD_CMD, "invalid command"), \
187
188
189 #define FILTER_CHAIN_ERRORS \
190         PARA_ERROR(UNSUPPORTED_FILTER, "given filter not supported"), \
191         PARA_ERROR(BAD_FILTER_OPTIONS, "invalid filter option given"), \
192         PARA_ERROR(FC_EOF, "filter chain: eof"), \
193
194
195 #define STAT_ERRORS \
196         PARA_ERROR(TOO_MANY_CLIENTS, "maximal number of stat clients exceeded"), \
197         PARA_ERROR(UNKNOWN_STAT_ITEM, "status item not recognized"), \
198
199
200 #define OGGDEC_ERRORS \
201         PARA_ERROR(OGGDEC_READ, "read from media returned an error"), \
202         PARA_ERROR(OGGDEC_NOTVORBIS, "bitstream is not vorbis data"), \
203         PARA_ERROR(OGGDEC_VERSION, "vorbis version mismatch"), \
204         PARA_ERROR(OGGDEC_BADHEADER, "invalid vorbis bitstream header"), \
205         PARA_ERROR(OGGDEC_FAULT, "bug or heap/stack corruption"), \
206         PARA_ERROR(OGGDEC_BADLINK, "invalid stream section or requested link corrupt"), \
207
208
209 #define GRAB_CLIENT_ERRORS \
210         PARA_ERROR(PEDANTIC_GRAB, "fd not ready and pedantic grab requested"), \
211         PARA_ERROR(GC_WRITE, "grab client write error"), \
212         PARA_ERROR(BAD_GC_SLOT, "invalid slot requested by grab client"), \
213         PARA_ERROR(BAD_GC_FILTER_NUM, "invalid filter number given"), \
214         PARA_ERROR(GC_SYNTAX, "grab client syntax error"), \
215         PARA_ERROR(GC_HELP_GIVEN, ""), /* not really an error */ \
216         PARA_ERROR(GC_VERSION_GIVEN, ""), /* not really an error */ \
217
218
219 #define MP3DEC_ERRORS \
220         PARA_ERROR(MAD_FRAME_DECODE, "mad frame decode error"), \
221         PARA_ERROR(MP3DEC_OVERRUN, "mp3 output buffer overrun"), \
222
223
224 #define FILTER_ERRORS \
225         PARA_ERROR(NO_FILTERS, "at least one filter must be given"), \
226         PARA_ERROR(FILTER_SYNTAX, "syntax error"), \
227
228
229 #define SIGNAL_ERRORS \
230         PARA_ERROR(SIGNAL_SIG_ERR, "signal() retured SIG_ERR"), \
231         PARA_ERROR(SIGNAL_READ, "read error from signal pipe"), \
232         PARA_ERROR(WAITPID, "waitpid error"), \
233         PARA_ERROR(SIGNAL_PIPE, "failed to setup signal pipe"), \
234
235
236 #define STRING_ERRORS \
237         PARA_ERROR(MKSTEMP, "mkstemp error: unable to create tmp file"), \
238         PARA_ERROR(FCHMOD, "fchmod error: can not set mode"), \
239
240
241 #define EXEC_ERRORS \
242         PARA_ERROR(DUP_PIPE, "exec error: can not create pipe"), \
243         PARA_ERROR(NULL_OPEN, "can not open /dev/null"), \
244
245
246 #define MP3_AFH_ERRORS \
247         PARA_ERROR(FRAME, "invalid mp3 frame"), \
248         PARA_ERROR(FRAME_LENGTH, "invalid frame length"), \
249         PARA_ERROR(MP3_INFO, "could not read mp3 info"), \
250         PARA_ERROR(HEADER_FREQ, "invalid header frequency"), \
251         PARA_ERROR(HEADER_BITRATE, "invalid header bitrate"), \
252
253
254 #define AAC_AFH_ERRORS \
255         PARA_ERROR(STSZ, "did not find stcz atom"), \
256         PARA_ERROR(MP4ASC, "audio spec config error"), \
257         PARA_ERROR(AAC_AFH_INIT, "failed to init aac decoder"), \
258
259
260 #define AAC_COMMON_ERRORS \
261         PARA_ERROR(ESDS, "did not find esds atom"), \
262         PARA_ERROR(STCO, "did not find stco atom"), \
263
264
265 #define OGG_AFH_ERRORS \
266         PARA_ERROR(OGG_READ, "ogg read error"), \
267         PARA_ERROR(SYNC_PAGEOUT, "ogg sync page-out error (no ogg file?)"), \
268         PARA_ERROR(STREAM_PAGEIN, "ogg stream page-in error (first page)"), \
269         PARA_ERROR(STREAM_PACKETOUT, "ogg stream packet-out error (first packet)"), \
270         PARA_ERROR(VORBIS, "vorbis synthesis header-in error (not vorbis?)"), \
271         PARA_ERROR(OGG_INFO, "ov_info error"), \
272         PARA_ERROR(OGG_VERSION, "unsupported ogg version"), \
273         PARA_ERROR(OGG_BAD_HEADER, "invalid ogg vorbis header"), \
274         PARA_ERROR(OGG_UNKNOWN_ERROR, "unknown ogg vorbis error"), \
275
276
277 #define VSS_ERRORS \
278         PARA_ERROR(AUDIO_FORMAT, "audio format not recognized"), \
279         PARA_ERROR(CHUNK, "unable to get chunk"), \
280
281
282 #define AFS_ERRORS \
283         PARA_ERROR(GETCWD, "can not get current working directory"), \
284         PARA_ERROR(CHDIR, "can not change directory"), \
285         PARA_ERROR(OPENDIR, "can not open directory"), \
286         PARA_ERROR(LSTAT, "lstat error"), \
287
288
289 #define CRYPT_ERRORS \
290         PARA_ERROR(PRIVATE_KEY, "can not read private key"), \
291         PARA_ERROR(PUBLIC_KEY, "can not read public key"), \
292         PARA_ERROR(RSA, "RSA error"), \
293         PARA_ERROR(ENCRYPT, "encrypt error"), \
294         PARA_ERROR(DECRYPT, "decrypt error"), \
295         PARA_ERROR(CHALLENGE, "failed to read challenge"), \
296
297
298 #define HTTP_SEND_ERRORS \
299         PARA_ERROR(WRITE_OK, "can not check whether fd is writable"), \
300         PARA_ERROR(SEND_QUEUED_CHUNK, "failed to send queued chunk"), \
301
302
303 #define RANDOM_SELECTOR_ERRORS \
304         PARA_ERROR(NOTHING_FOUND, "no audio files found"), \
305
306
307 #define MYSQL_SELECTOR_ERRORS \
308         PARA_ERROR(MYSQL_SYNTAX, "mysql syntax error"), \
309         PARA_ERROR(NOTCONN, "not connected to mysql server"), \
310         PARA_ERROR(TOOBIG, "mysql: file too large"), \
311         PARA_ERROR(NAMETOOLONG, "mysql: name too long"), \
312         PARA_ERROR(QFAILED, "mysql query failed"), \
313         PARA_ERROR(NOROW, "row is NULL"), \
314         PARA_ERROR(NOATTS, "can not get attributes from mysql table"), \
315         PARA_ERROR(NORESULT, "error while fetching mysql result"), \
316         PARA_ERROR(EMPTY_RESULT, "result is empty"), \
317         PARA_ERROR(ESCAPE, "can not escape string"), \
318         PARA_ERROR(GET_AUDIO_FILE, "can not get current audio file"), \
319         PARA_ERROR(GET_STREAM, "can not get current stream"), \
320         PARA_ERROR(NO_STREAM, "no such stream"), \
321         PARA_ERROR(AUDIO_FILE, "no such audio file"), \
322         PARA_ERROR(GET_QUERY, "can not get query for specified stream"), \
323         PARA_ERROR(TMPFILE, "error while writing temporary file"), \
324         PARA_ERROR(META, "can not get meta data"), \
325         PARA_ERROR(MYSQL_INIT, "can not initialize mysql connection"), \
326         PARA_ERROR(NO_MYSQL_PASSWD, "fatal: no mysql passord given"), \
327         PARA_ERROR(NO_AF_DIR, "fatal: audio file directory not given"), \
328
329
330 #define COMMAND_ERRORS \
331         PARA_ERROR(COMMAND_SYNTAX, "syntax error in command"), \
332         PARA_ERROR(AUTH, "did not receive auth request"), \
333         PARA_ERROR(BAD_SELECTOR, "no such audio file selector"), \
334         PARA_ERROR(NO_AUDIO_FILE, "no audio file"), \
335         PARA_ERROR(BAD_CMD, "invalid command"), \
336         PARA_ERROR(PERM, "permission denied"), \
337         PARA_ERROR(LOCK, "lock error"), \
338         PARA_ERROR(SENDER_CMD, "command not supported by this sender"), \
339         PARA_ERROR(SERVER_CRASH, "para_server crashed -- can not live without it"), \
340         PARA_ERROR(BAD_USER, "you don't exist. Go away."), \
341
342
343 #define PLAYLIST_SELECTOR_ERRORS \
344         PARA_ERROR(LOAD_PLAYLIST, "failed to load playlist"), \
345
346
347 #define IPC_ERRORS \
348         PARA_ERROR(SEM_GET, "failed to create semaphore"), \
349         PARA_ERROR(SEM_REMOVE, "can not remove semaphore"), \
350         PARA_ERROR(SHM_GET, "failed to allocate shared memory area"), \
351         PARA_ERROR(SHM_DESTROY, "failed to destroy shared memory area"), \
352         PARA_ERROR(SHM_ATTACH, "can not attach shared memory area"), \
353         PARA_ERROR(SHM_DETACH, "can not detach shared memory area"), \
354
355
356 #define DCCP_ERRORS \
357         PARA_ERROR(DCCP_SOCKET, "can not create dccp socket"), \
358
359
360 #define DCCP_RECV_ERRORS \
361         PARA_ERROR(ADDR_INFO, "getaddrinfo error"), \
362         PARA_ERROR(DCCP_OVERRUN, "dccp output buffer buffer overrun"), \
363         PARA_ERROR(DCCP_CONNECT, "dccp connect error"), \
364         PARA_ERROR(DCCP_RECV_EOF, "dccp_recv: end of file"), \
365
366
367 #define DCCP_SEND_ERRORS \
368         PARA_ERROR(DCCP_BIND, "dccp bind error"), \
369         PARA_ERROR(DCCP_LISTEN, "dccp listen error"), \
370         PARA_ERROR(DCCP_WRITE, "dccp write error"), \
371
372
373 #define FD_ERRORS \
374         PARA_ERROR(F_GETFL, "failed to get fd flags"), \
375         PARA_ERROR(F_SETFL, "failed to set fd flags"), \
376         PARA_ERROR(FGETS, "fgets error"), \
377
378
379 #define WRITE_ERRORS \
380         PARA_ERROR(WRITE_SYNTAX, "para_write syntax error"), \
381         PARA_ERROR(PREMATURE_END, "premature end of audio file"), \
382         PARA_ERROR(NO_WAV_HEADER, "wave header not found"), \
383         PARA_ERROR(WAV_HEADER_SUCCESS, "successfully read wave header"), \
384         PARA_ERROR(NO_DELAY, "no initial delay"), \
385         PARA_ERROR(DELAY_TIMEOUT, "initial delay timeout"), \
386
387
388 #define ALSA_WRITE_ERRORS \
389         PARA_ERROR(BROKEN_CONF, "Broken alsa configuration"), \
390         PARA_ERROR(ACCESS_TYPE, "alsa access type not available"), \
391         PARA_ERROR(SAMPLE_FORMAT, "sample format not available"), \
392         PARA_ERROR(CHANNEL_COUNT, "channels count not available"), \
393         PARA_ERROR(HW_PARAMS, "unable to install hw params"), \
394         PARA_ERROR(SW_PARAMS, "unable to install sw params"), \
395         PARA_ERROR(BAD_PERIOD, "can not use period equal to buffer size"), \
396         PARA_ERROR(GET_XFER, "unable to obtain xfer align"), \
397         PARA_ERROR(SET_XFER, "snd_pcm_sw_params_set_xfer_align() failed"), \
398         PARA_ERROR(ALSA_WRITE, "alsa write error"), \
399         PARA_ERROR(PCM_OPEN, "unable to open pcm"), \
400         PARA_ERROR(SND_PCM_INFO, "pcm info error"), \
401         PARA_ERROR(GET_BUFFER_TIME, "snd_pcm_hw_params_get_buffer_time_max() failed"), \
402         PARA_ERROR(SET_BUFFER_TIME, "snd_pcm_hw_params_set_buffer_time_near() failed"), \
403         PARA_ERROR(SET_RATE, "snd_pcm_hw_params_set_rate_near failed"), \
404         PARA_ERROR(START_THRESHOLD, "snd_pcm_sw_params_set_start_threshold() failed"), \
405         PARA_ERROR(STOP_THRESHOLD, "snd_pcm_sw_params_set_stop_threshold() failed"), \
406
407
408 #define FILE_WRITE_ERRORS \
409         PARA_ERROR(FW_WRITE, "file writer write error"), \
410         PARA_ERROR(FW_OPEN, "file writer: can not open output file"), \
411         PARA_ERROR(FW_NO_FILE, "task started without open file"), \
412
413
414 #define WRITE_COMMON_ERRORS \
415         PARA_ERROR(WRITE_COMMON_SYNTAX, "syntax error in write option"), \
416         PARA_ERROR(WNG_EOF, "wng: end of file"), \
417
418
419 #define AACDEC_ERRORS \
420         PARA_ERROR(AACDEC_INIT, "failed to init aac decoder"), \
421         PARA_ERROR(AAC_DECODE, "aac decode error"), \
422         PARA_ERROR(AAC_OVERRUN, "aac output buffer overrun"), \
423
424
425 #define CHUNK_QUEUE_ERRORS \
426         PARA_ERROR(QUEUE, "packet queue overrun"), \
427
428
429 /**
430  * the subsystem shift
431  *
432  * 255 error codes ought to be enough for every subsystem. Use the higher bits
433  * of the return value to encode the subsystem number
434  */
435 #define SS_SHIFT 8
436
437 /**
438  * compute the subsystem offset
439  *
440  * It is given by x * 2**8 where \a x is the subsystem number
441  */
442 #define SS_OFFSET(ss) (SS_ ## ss << SS_SHIFT)
443
444 /**
445  * make the enum of all errors of one subsystem
446  *
447  * As zero should not be an error, we define a dummy enum entry with value
448  * 2**ss. That lets the real errors start at 2**ss + 1.
449  */
450 #define SS_ENUM(ss) enum {\
451         E_ ## ss ## _DUMMY = SS_OFFSET(ss), \
452         ss ## _ERRORS}
453
454 /**
455  * determine the subsystem number from the error number
456  *
457  * Easy, it's just \a num / 2**8.
458  */
459 #define ERRNUM_TO_SS(num) ((num) >> SS_SHIFT)
460
461 /**
462  * determine the index of an error number
463  *
464  * Also easy: It's the lower 8 bits of num.
465  */
466 #define ERRNUM_TO_INDEX(num) (((1 << SS_SHIFT) - 1) & (num))
467
468 /**
469  * paraslash's version of strerror(3)
470  *
471  * expands to the error text of \a num (a string constant).
472  */
473 #define PARA_STRERROR(num) para_errlist[ERRNUM_TO_SS(num)] [ERRNUM_TO_INDEX(num)]
474
475 /**
476  * define the error list for one subsystem
477  #
478  * The first entry (index 0) is always the name of the subsystem
479  * Used by macros in config.h (generated by configure)
480  */
481 #define DEFINE_ERRLIST(ss) const char * ss ## _ERRLIST[] = {#ss, ss ## _ERRORS}
482
483 /**
484  * activate errors for one subsystem.
485  *
486  * Each executable needs only the error lists of those subssystems it is
487  * actually linked with. We always reserve space for NUM_SS char ** pointers,
488  * but only init those of the needed subsystems. This macro is used by macros
489  * in config.h (generated by configure).
490  */
491 #define PARA_ERRLIST(ss) [SS_ ## ss] = ss ## _ERRLIST
492
493 /**
494  * This is temporarily defined to expand to its first argument (prefixed by
495  * 'E_') and gets later redefined to expand to the error text only
496  */
497 #define PARA_ERROR(err, msg) E_ ## err
498
499 // #define SS_NAME(ss) para_errlist[ss]? para_errlist[ss][0] : ""
500
501 /** \cond popcorn time */
502 SS_ENUM(GUI);
503 SS_ENUM(SCHED);
504 SS_ENUM(STDIN);
505 SS_ENUM(STDOUT);
506 SS_ENUM(WAV);
507 SS_ENUM(COMPRESS);
508 SS_ENUM(TIME);
509 SS_ENUM(CLOSE_ON_FORK);
510 SS_ENUM(ORTP_RECV);
511 SS_ENUM(NET);
512 SS_ENUM(RECV);
513 SS_ENUM(AUDIOD);
514 SS_ENUM(AUDIOD_COMMAND);
515 SS_ENUM(EXEC);
516 SS_ENUM(SIGNAL);
517 SS_ENUM(STRING);
518 SS_ENUM(DAEMON);
519 SS_ENUM(STAT);
520 SS_ENUM(GRAB_CLIENT);
521 SS_ENUM(HTTP_RECV);
522 SS_ENUM(RECV_COMMON);
523 SS_ENUM(FILTER_CHAIN);
524 SS_ENUM(OGGDEC);
525 SS_ENUM(MP3DEC);
526 SS_ENUM(AACDEC);
527 SS_ENUM(FILTER);
528 SS_ENUM(MP3_AFH);
529 SS_ENUM(OGG_AFH);
530 SS_ENUM(AAC_AFH);
531 SS_ENUM(AAC_COMMON);
532 SS_ENUM(SERVER);
533 SS_ENUM(VSS);
534 SS_ENUM(COMMAND);
535 SS_ENUM(RANDOM_SELECTOR);
536 SS_ENUM(PLAYLIST_SELECTOR);
537 SS_ENUM(CRYPT);
538 SS_ENUM(HTTP_SEND);
539 SS_ENUM(ORTP_SEND);
540 SS_ENUM(AFS);
541 SS_ENUM(MYSQL_SELECTOR);
542 SS_ENUM(IPC);
543 SS_ENUM(DCCP);
544 SS_ENUM(DCCP_RECV);
545 SS_ENUM(DCCP_SEND);
546 SS_ENUM(FD);
547 SS_ENUM(WRITE);
548 SS_ENUM(WRITE_COMMON);
549 SS_ENUM(ALSA_WRITE);
550 SS_ENUM(FILE_WRITE);
551 SS_ENUM(OSX_WRITE);
552 SS_ENUM(RINGBUFFER);
553 SS_ENUM(CLIENT);
554 SS_ENUM(CLIENT_COMMON);
555 SS_ENUM(AUDIOC);
556 SS_ENUM(USER_LIST);
557 SS_ENUM(CHUNK_QUEUE);
558 /** \endcond */
559 #undef PARA_ERROR
560 /* rest of the world only sees the error text */
561 #define PARA_ERROR(err, msg) msg