mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2026-01-28 01:27:16 +01:00
Fix active notification send on value change
This commit is contained in:
parent
9a4840d83e
commit
e4f9a1aae2
1 changed files with 4 additions and 1 deletions
|
|
@ -648,8 +648,11 @@ void periodic_check_notifiy(struct uloop_timeout *timeout __attribute__((unused
|
|||
is_notify = check_value_change();
|
||||
if (is_notify > 0)
|
||||
cwmp_update_enabled_notify_file();
|
||||
if (is_notify & NOTIF_ACTIVE)
|
||||
if (is_notify & NOTIF_ACTIVE) {
|
||||
send_active_value_change();
|
||||
trigger_cwmp_session_timer();
|
||||
}
|
||||
|
||||
if (is_notify & NOTIF_LW_ACTIVE)
|
||||
cwmp_lwnotification();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue