aboutsummaryrefslogtreecommitdiffstats
path: root/isdb-t/br-sp-SantaBarbaraDOeste
diff options
context:
space:
mode:
authorBob Goddard <linuxtv@1.linuxtv.bgcomp.co.uk>2016-04-26 08:34:29 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2016-05-09 18:42:32 -0300
commite56800218f88cb777577083161975a3078ac0bf7 (patch)
treeb718277c5fe8bd2a9a31075016f8478541ec0cb9 /isdb-t/br-sp-SantaBarbaraDOeste
parent138d406945fb110062214d30b73ed4c71f433691 (diff)
downloaddtv-scan-tables-e56800218f88cb777577083161975a3078ac0bf7.tar.gz
Errors in scan file
I posted an email with a patch back on 04/02/2016 17:32 only to find that nothing has been done. This patch, reproduced below adds 2 new transponders to Astra 28.2E and removes a trailing space. This trailing spaces causes dvbv5-scan to segfault. Why has this not been actioned and why was my email address banned? Is this a close community that tells people to f-off? dvb-s/Astra-28.2E | 27 ++++++++++++++++++++++++--- Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
{ 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 __CSOCKETEVENTS
#define __CSOCKETEVENTS

#include "cphidget.h"
#include "regex.h"
#include "utils/utils.h"
#include "cphidgetlist.h"
#include "pdictclient.h"
#ifdef USE_ZEROCONF
#include "dns_sd.h"
#endif

extern regex_t phidgetsetex;
extern regex_t managerex;
extern regex_t managervalex;

void network_phidget_event_handler(const char *key, const char *val, unsigned int len, pdict_reason_t reason, void *ptr);
void network_manager_event_handler(const char *key, const char *val, unsigned int len, pdict_reason_t, void *ptr);
void network_heartbeat_event_handler(const char *key, const char *val, unsigned int len, pdict_reason_t reason, void *ptr);

#endif