can´t be removed
it use the vtuner-dmm-3.c not the vtuner-dvb-3.c
vtunerd: [14078 ../../vtuner-dmm-3.c:152] info: FE_SET_FRONTEND parameters: freq:1699000 inversion:34 SR:27500000 FEC:21
vtunerd: [14078 ../../vtuner-dmm-3.c:144] warn: FE_GET_FRONTEND failed
vtunerd: [14078 ../../vtunerd-service.c:449] warn: vtuner call failed, type:2 reason:-1
vtunerd-services.h
#ifndef _VTUNERDSERVICE_H_
#define _VTUNEDRSERVICE_H_
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "vtuner-network.h"
#if HAVE_DVB_API_VERSION < 3
#include "vtuner-dmm-2.h"
#else
#ifdef HAVE_DREAMBOX_HARDWARE
#include "vtuner-dmm-3.h"
#else
#include "vtuner-dvb-3.h"
#endif
#endif
#define DEBUGSRV(msg, ...) DEBUG(MSG_SRV, msg, ## __VA_ARGS__)
typedef enum vtuner_session_status {
SST_IDLE,
SST_BUSY
} vtuner_session_status_t;
int fetch_request(struct sockaddr_in*, int*, int*, int*);
int run_worker(int, int, int, int, struct sockaddr_in*);
#endif
Edited by nobody9, 7 January 2012 - 12:00.