Skip to content

Commit

Permalink
satipc quirk for Gainatech EyeTV Netstream 4C (#887)
Browse files Browse the repository at this point in the history
* satipc quirk for Gainatech Netstream 4C

Gainatech Netstream 4C did reply  with 503 when fe=1 is in the  request URL
fixes #879

* Update satipc.c
  • Loading branch information
9000h authored Jul 20, 2021
1 parent 287ab90 commit 74f26c4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/satipc.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ int satipc_reply(sockets *s) {
if (rc == 404)
sip->restart_needed = 1;

//quirk for Gainatech EyeTV Netstream 4C when fe=1 is in the URL
if (rc == 503)
if (ad->sys[0] == SYS_DVBC_ANNEX_A || ad->sys[0] == SYS_DVBC2)
sip->satip_fe = 0;

if (rc == 454 || rc == 503 || rc == 405) {
sip->sent_transport = 0;
sip->want_tune = 1;
Expand Down

0 comments on commit 74f26c4

Please sign in to comment.