Opened 13 years ago
Closed 13 years ago
#316 closed defect (invalid)
API detection improvement module-dvb-api.c
Reported by: | cam100in1 | Owned by: | |
---|---|---|---|
Priority: | major | Component: | |
Severity: | medium | Keywords: | |
Cc: | Sensitive: | no |
Description
extend this part:
#define BOX_COUNT 2
struct box_devices
{
char api_description[32];
char ca_device_path[32];
char demux_device_path[32];
char cam_socket_path[32];
};
struct box_devices devices[BOX_COUNT] = {
/* dreambox (dvb-api-3)*/ { "API3", "/dev/dvb/adapter0/ca%d", "/dev/dvb/adapter0/demux%d", "/var/tmp/camd.socket" },
/* dreambox (dvb-api-1)*/ { "API1", "/dev/dvb/card0/ca%d", "/dev/dvb/card0/demux%d", "/var/tmp/camd.socket" }
};
And this part
cs_log("Detect %s %s", device_path, devices[apinum].api_description);
Note:
See TracTickets
for help on using tickets.
Not realy working. Sorry