mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-20 07:16:03 +00:00
10_ZWave.pm: security-class patch (Forum #38587)
git-svn-id: https://svn.fhem.de/fhem/trunk@9210 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
8fb0f9b977
commit
d9a930705e
@ -2435,7 +2435,11 @@ ZWave_addToSendStack($$)
|
|||||||
|
|
||||||
my $now;
|
my $now;
|
||||||
if(index(AttrVal($hash->{NAME}, "classes", ""), "WAKE_UP") >= 0) {
|
if(index(AttrVal($hash->{NAME}, "classes", ""), "WAKE_UP") >= 0) {
|
||||||
return "Scheduled for sending after WAKEUP" if(!$hash->{wakeupAlive});
|
if ($cmd =~ m/^......988[01].*/) {
|
||||||
|
Log3 $hash->{NAME}, 5, "$hash->{NAME}: Sendstack bypassed for $cmd";
|
||||||
|
} else {
|
||||||
|
return "Scheduled for sending after WAKEUP" if(!$hash->{wakeupAlive});
|
||||||
|
}
|
||||||
|
|
||||||
} else { # clear commands without 0113 and 0013
|
} else { # clear commands without 0113 and 0013
|
||||||
$now = gettimeofday();
|
$now = gettimeofday();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user