Skip to content

Commit

Permalink
Use a wildcard demux_id when stopping
Browse files Browse the repository at this point in the history
The commit uses the new wildcard demux_id in stop decrypting command.
OSCam svn rev >= 10389 is required.
  • Loading branch information
manio committed Feb 5, 2015
1 parent 1b9df50 commit 7898582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SocketHandler.cpp
Expand Up @@ -180,7 +180,7 @@ void SocketHandler::SendStopDescrambling()
buff[4] = 0x83;
buff[5] = 0x02;
buff[6] = 0x00;
buff[7] = 0x00; //demux id
buff[7] = 0xFF; //wildcard demux id

Write(buff, 8);
}
Expand Down

0 comments on commit 7898582

Please sign in to comment.