Home | History | Annotate | Download | only in avahi-common
      1 #ifndef fooerrorhfoo
      2 #define fooerrorhfoo
      3 
      4 /***
      5   This file is part of avahi.
      6 
      7   avahi is free software; you can redistribute it and/or modify it
      8   under the terms of the GNU Lesser General Public License as
      9   published by the Free Software Foundation; either version 2.1 of the
     10   License, or (at your option) any later version.
     11 
     12   avahi is distributed in the hope that it will be useful, but WITHOUT
     13   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
     14   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
     15   Public License for more details.
     16 
     17   You should have received a copy of the GNU Lesser General Public
     18   License along with avahi; if not, write to the Free Software
     19   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
     20   USA.
     21 ***/
     22 
     23 /** \file error.h Error codes and auxiliary functions */
     24 
     25 #include <avahi-common/cdecl.h>
     26 
     27 AVAHI_C_DECL_BEGIN
     28 
     29 /** Error codes used by avahi */
     30 enum {
     31     AVAHI_OK = 0,                            /**< OK */
     32     AVAHI_ERR_FAILURE = -1,                  /**< Generic error code */
     33     AVAHI_ERR_BAD_STATE = -2,                /**< Object was in a bad state */
     34     AVAHI_ERR_INVALID_HOST_NAME = -3,        /**< Invalid host name */
     35     AVAHI_ERR_INVALID_DOMAIN_NAME = -4,      /**< Invalid domain name */
     36     AVAHI_ERR_NO_NETWORK = -5,               /**< No suitable network protocol available */
     37     AVAHI_ERR_INVALID_TTL = -6,              /**< Invalid DNS TTL */
     38     AVAHI_ERR_IS_PATTERN = -7,               /**< RR key is pattern */
     39     AVAHI_ERR_COLLISION = -8,                /**< Name collision */
     40     AVAHI_ERR_INVALID_RECORD = -9,           /**< Invalid RR */
     41 
     42     AVAHI_ERR_INVALID_SERVICE_NAME = -10,    /**< Invalid service name */
     43     AVAHI_ERR_INVALID_SERVICE_TYPE = -11,    /**< Invalid service type */
     44     AVAHI_ERR_INVALID_PORT = -12,            /**< Invalid port number */
     45     AVAHI_ERR_INVALID_KEY = -13,             /**< Invalid key */
     46     AVAHI_ERR_INVALID_ADDRESS = -14,         /**< Invalid address */
     47     AVAHI_ERR_TIMEOUT = -15,                 /**< Timeout reached */
     48     AVAHI_ERR_TOO_MANY_CLIENTS = -16,        /**< Too many clients */
     49     AVAHI_ERR_TOO_MANY_OBJECTS = -17,        /**< Too many objects */
     50     AVAHI_ERR_TOO_MANY_ENTRIES = -18,        /**< Too many entries */
     51     AVAHI_ERR_OS = -19,                      /**< OS error */
     52 
     53     AVAHI_ERR_ACCESS_DENIED = -20,           /**< Access denied */
     54     AVAHI_ERR_INVALID_OPERATION = -21,       /**< Invalid operation */
     55     AVAHI_ERR_DBUS_ERROR = -22,              /**< An unexpected D-Bus error occurred */
     56     AVAHI_ERR_DISCONNECTED = -23,            /**< Daemon connection failed */
     57     AVAHI_ERR_NO_MEMORY = -24,               /**< Memory exhausted */
     58     AVAHI_ERR_INVALID_OBJECT = -25,          /**< The object passed to this function was invalid */
     59     AVAHI_ERR_NO_DAEMON = -26,               /**< Daemon not running */
     60     AVAHI_ERR_INVALID_INTERFACE = -27,       /**< Invalid interface */
     61     AVAHI_ERR_INVALID_PROTOCOL = -28,        /**< Invalid protocol */
     62     AVAHI_ERR_INVALID_FLAGS = -29,           /**< Invalid flags */
     63 
     64     AVAHI_ERR_NOT_FOUND = -30,               /**< Not found */
     65     AVAHI_ERR_INVALID_CONFIG = -31,          /**< Configuration error */
     66     AVAHI_ERR_VERSION_MISMATCH = -32,        /**< Verson mismatch */
     67     AVAHI_ERR_INVALID_SERVICE_SUBTYPE = -33, /**< Invalid service subtype */
     68     AVAHI_ERR_INVALID_PACKET = -34,          /**< Invalid packet */
     69     AVAHI_ERR_INVALID_DNS_ERROR = -35,       /**< Invlaid DNS return code */
     70     AVAHI_ERR_DNS_FORMERR = -36,             /**< DNS Error: Form error */
     71     AVAHI_ERR_DNS_SERVFAIL = -37,            /**< DNS Error: Server Failure */
     72     AVAHI_ERR_DNS_NXDOMAIN = -38,            /**< DNS Error: No such domain */
     73     AVAHI_ERR_DNS_NOTIMP = -39,              /**< DNS Error: Not implemented */
     74 
     75     AVAHI_ERR_DNS_REFUSED = -40,             /**< DNS Error: Operation refused */
     76     AVAHI_ERR_DNS_YXDOMAIN = -41,
     77     AVAHI_ERR_DNS_YXRRSET = -42,
     78     AVAHI_ERR_DNS_NXRRSET = -43,
     79     AVAHI_ERR_DNS_NOTAUTH = -44,             /**< DNS Error: Not authorized */
     80     AVAHI_ERR_DNS_NOTZONE = -45,
     81     AVAHI_ERR_INVALID_RDATA = -46,           /**< Invalid RDATA */
     82     AVAHI_ERR_INVALID_DNS_CLASS = -47,       /**< Invalid DNS class */
     83     AVAHI_ERR_INVALID_DNS_TYPE = -48,        /**< Invalid DNS type */
     84     AVAHI_ERR_NOT_SUPPORTED = -49,           /**< Not supported */
     85 
     86     AVAHI_ERR_NOT_PERMITTED = -50,           /**< Operation not permitted */
     87     AVAHI_ERR_INVALID_ARGUMENT = -51,        /**< Invalid argument */
     88     AVAHI_ERR_IS_EMPTY = -52,                /**< Is empty */
     89     AVAHI_ERR_NO_CHANGE = -53,               /**< The requested operation is invalid because it is redundant */
     90 
     91     /****
     92      ****    IF YOU ADD A NEW ERROR CODE HERE, PLEASE DON'T FORGET TO ADD
     93      ****    IT TO THE STRING ARRAY IN avahi_strerror() IN error.c AND
     94      ****    TO THE ARRAY IN dbus.c AND FINALLY TO dbus.h!
     95      ****
     96      ****    Also remember to update the MAX value below.
     97      ****/
     98 
     99     AVAHI_ERR_MAX = -54
    100 };
    101 
    102 /** Return a human readable error string for the specified error code */
    103 const char *avahi_strerror(int error);
    104 
    105 AVAHI_C_DECL_END
    106 
    107 #endif
    108