aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-t/uk-Hannington
blob: 0bbbfdd1975f6b6038d6f908c4b5ed802b3bb287 (plain)
1
2
3
# Hannington, North Hampshire
# T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy
T 706000000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef fooerrorhfoo
#define fooerrorhfoo

/* $Id: error.h 1298 2006-08-31 17:26:29Z lennart $ */

/***
  This file is part of avahi.
 
  avahi is free software; you can redistribute it and/or modify it
  under the terms of the GNU Lesser General Public License as
  published by the Free Software Foundation; either version 2.1 of the
  License, or (at your option) any later version.
 
  avahi 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 Lesser General
  Public License for more details.
 
  You should have received a copy of the GNU Lesser General Public
  License along with avahi; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  USA.
***/

/** \file error.h Error codes and auxiliary functions */

#include <avahi-common/cdecl.h>

AVAHI_C_DECL_BEGIN

/** Error codes used by avahi */
enum { 
    AVAHI_OK = 0,                            /**< OK */
    AVAHI_ERR_FAILURE = -1,                  /**< Generic error code */
    AVAHI_ERR_BAD_STATE = -2,                /**< Object was in a bad state */
    AVAHI_ERR_INVALID_HOST_NAME = -3,        /**< Invalid host name */
    AVAHI_ERR_INVALID_DOMAIN_NAME = -4,      /**< Invalid domain name */
    AVAHI_ERR_NO_NETWORK = -5,               /**< No suitable network protocol available */
    AVAHI_ERR_INVALID_TTL = -6,              /**< Invalid DNS TTL */
    AVAHI_ERR_IS_PATTERN = -7,               /**< RR key is pattern */
    AVAHI_ERR_COLLISION = -8,                /**< Name collision */
    AVAHI_ERR_INVALID_RECORD = -9,           /**< Invalid RR */

    AVAHI_ERR_INVALID_SERVICE_NAME = -10,    /**< Invalid service name */
    AVAHI_ERR_INVALID_SERVICE_TYPE = -11,    /**< Invalid service type */
    AVAHI_ERR_INVALID_PORT = -12,            /**< Invalid port number */
    AVAHI_ERR_INVALID_KEY = -13,             /**< Invalid key */
    AVAHI_ERR_INVALID_ADDRESS = -14,         /**< Invalid address */
    AVAHI_ERR_TIMEOUT = -15,                 /**< Timeout reached */
    AVAHI_ERR_TOO_MANY_CLIENTS = -16,        /**< Too many clients */
    AVAHI_ERR_TOO_MANY_OBJECTS = -17,        /**< Too many objects */
    AVAHI_ERR_TOO_MANY_ENTRIES = -18,        /**< Too many entries */
    AVAHI_ERR_OS = -19,                      /**< OS error */

    AVAHI_ERR_ACCESS_DENIED = -20,           /**< Access denied */
    AVAHI_ERR_INVALID_OPERATION = -21,       /**< Invalid operation */
    AVAHI_ERR_DBUS_ERROR = -22,              /**< An unexpected D-Bus error occured */
    AVAHI_ERR_DISCONNECTED = -23,            /**< Daemon connection failed */
    AVAHI_ERR_NO_MEMORY = -24,               /**< Memory exhausted */
    AVAHI_ERR_INVALID_OBJECT = -25,          /**< The object passed to this function was invalid */
    AVAHI_ERR_NO_DAEMON = -26,               /**< Daemon not running */
    AVAHI_ERR_INVALID_INTERFACE = -27,       /**< Invalid interface */
    AVAHI_ERR_INVALID_PROTOCOL = -28,        /**< Invalid protocol */
    AVAHI_ERR_INVALID_FLAGS = -29,           /**< Invalid flags */

    AVAHI_ERR_NOT_FOUND = -30,               /**< Not found */
    AVAHI_ERR_INVALID_CONFIG = -31,          /**< Configuration error */
    AVAHI_ERR_VERSION_MISMATCH = -32,        /**< Verson mismatch */
    AVAHI_ERR_INVALID_SERVICE_SUBTYPE = -33, /**< Invalid service subtype */
    AVAHI_ERR_INVALID_PACKET = -34,          /**< Invalid packet */
    AVAHI_ERR_INVALID_DNS_ERROR = -35,       /**< Invlaid DNS return code */
    AVAHI_ERR_DNS_FORMERR = -36,             /**< DNS Error: Form error */
    AVAHI_ERR_DNS_SERVFAIL = -37,            /**< DNS Error: Server Failure */
    AVAHI_ERR_DNS_NXDOMAIN = -38,            /**< DNS Error: No such domain */
    AVAHI_ERR_DNS_NOTIMP = -39,              /**< DNS Error: Not implemented */

    AVAHI_ERR_DNS_REFUSED = -40,             /**< DNS Error: Operation refused */
    AVAHI_ERR_DNS_YXDOMAIN = -41,
    AVAHI_ERR_DNS_YXRRSET = -42,
    AVAHI_ERR_DNS_NXRRSET = -43,
    AVAHI_ERR_DNS_NOTAUTH = -44,             /**< DNS Error: Not authorized */
    AVAHI_ERR_DNS_NOTZONE = -45,             
    AVAHI_ERR_INVALID_RDATA = -46,           /**< Invalid RDATA */
    AVAHI_ERR_INVALID_DNS_CLASS = -47,       /**< Invalid DNS class */
    AVAHI_ERR_INVALID_DNS_TYPE = -48,        /**< Invalid DNS type */
    AVAHI_ERR_NOT_SUPPORTED = -49,           /**< Not supported */
    
    AVAHI_ERR_NOT_PERMITTED = -50,           /**< Operation not permitted */
    AVAHI_ERR_INVALID_ARGUMENT = -51,        /**< Invalid argument */
    AVAHI_ERR_IS_EMPTY = -52,                /**< Is empty */
    AVAHI_ERR_NO_CHANGE = -53,               /**< The requested operation is invalid because redundant */
    
    /****
     ****    IF YOU ADD A NEW ERROR CODE HERE, PLEASE DON'T FORGET TO ADD
     ****    IT TO THE STRING ARRAY IN avahi_strerror() IN error.c AND
     ****    TO THE ARRAY IN dbus.c AND FINALLY TO dbus.h!
     ****
     ****    Also remember to update the MAX value below.
     ****/
    
    AVAHI_ERR_MAX = -54
};

/** Return a human readable error string for the specified error code */
const char *avahi_strerror(int error);

AVAHI_C_DECL_END

#endif