]> code.delx.au - pulseaudio/blob - src/polyp/error.c
remove a bunch of log messages
[pulseaudio] / src / polyp / error.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
10
11 polypaudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <stdlib.h>
28
29 #include <polypcore/native-common.h>
30
31 #include "error.h"
32
33 static const char* const errortab[PA_ERR_MAX] = {
34 [PA_OK] = "OK",
35 [PA_ERR_ACCESS] = "Access denied",
36 [PA_ERR_COMMAND] = "Unknown command",
37 [PA_ERR_INVALID] = "Invalid argument",
38 [PA_ERR_EXIST] = "Entity exists",
39 [PA_ERR_NOENTITY] = "No such entity",
40 [PA_ERR_CONNECTIONREFUSED] = "Connection refused",
41 [PA_ERR_PROTOCOL] = "Protocol error",
42 [PA_ERR_TIMEOUT] = "Timeout",
43 [PA_ERR_AUTHKEY] = "No authorization key",
44 [PA_ERR_INTERNAL] = "Internal error",
45 [PA_ERR_CONNECTIONTERMINATED] = "Connection terminated",
46 [PA_ERR_KILLED] = "Entity killed",
47 [PA_ERR_INVALIDSERVER] = "Invalid server",
48 [PA_ERR_MODINITFAILED] = "Module initalization failed",
49 [PA_ERR_BADSTATE] = "Bad state",
50 [PA_ERR_NODATA] = "No data",
51 [PA_ERR_VERSION] = "Incompatible protocol version",
52 };
53
54 const char*pa_strerror(int error) {
55 if (error < 0 || error >= PA_ERR_MAX)
56 return NULL;
57
58 return errortab[error];
59 }