Changeset 11708


Ignore:
Timestamp:
05/09/22 20:09:35 (19 months ago)
Author:
nautilus7
Message:

[dvbapi] Do not block ECM / EMM pid 0x1FFF

ECM pid 0x1FFF is used in the fake ecm request for BISS. We cannot block it!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/module-dvbapi.c

    r11707 r11708  
    21332133    ca_pid = b2i(2, buffer + 2) & 0x1FFF;
    21342134
    2135     if (ca_system_id == 0x0000 || ca_pid == 0x1FFF)
    2136     {
    2137         return; // This is not a valid CAID or EMM pid
     2135    if(ca_system_id == 0x0000)
     2136    {
     2137        return; // This is not a valid CAID
    21382138    }
    21392139
     
    38443844    ca_pid = b2i(2, buffer + 2) & 0x1FFF;
    38453845
    3846     if (ca_system_id == 0x0000 || ca_pid == 0x1FFF)
    3847     {
    3848         return; // This is not a valid CAID or ECM pid
     3846    if(ca_system_id == 0x0000)
     3847    {
     3848        return; // This is not a valid CAID
    38493849    }
    38503850
Note: See TracChangeset for help on using the changeset viewer.