You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.6 KiB
C
63 lines
1.6 KiB
C
/*
|
|
Copyright (c) 2016-2021 Roger Light <roger@atchoo.org>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
are made available under the terms of the Eclipse Public License 2.0
|
|
and Eclipse Distribution License v1.0 which accompany this distribution.
|
|
|
|
The Eclipse Public License is available at
|
|
https://www.eclipse.org/legal/epl-2.0/
|
|
and the Eclipse Distribution License is available at
|
|
http://www.eclipse.org/org/documents/edl-v10.php.
|
|
|
|
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
|
|
|
|
Contributors:
|
|
Roger Light - initial implementation and documentation.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "mosquitto_broker_internal.h"
|
|
#include "mosquitto_broker.h"
|
|
#include "time_mosq.h"
|
|
#include "utlist.h"
|
|
|
|
|
|
static void plugin__handle_tick_single(struct mosquitto__security_options *opts)
|
|
{
|
|
struct mosquitto_evt_tick event_data;
|
|
struct mosquitto__callback *cb_base;
|
|
|
|
memset(&event_data, 0, sizeof(event_data));
|
|
|
|
DL_FOREACH(opts->plugin_callbacks.tick, cb_base){
|
|
mosquitto_time_ns(&event_data.now_s, &event_data.now_ns);
|
|
event_data.next_s = 0;
|
|
event_data.next_ms = 0;
|
|
cb_base->cb(MOSQ_EVT_TICK, &event_data, cb_base->userdata);
|
|
loop__update_next_event(event_data.next_s * 1000 + event_data.next_ms);
|
|
}
|
|
}
|
|
|
|
|
|
void plugin__handle_tick(void)
|
|
{
|
|
struct mosquitto__security_options *opts;
|
|
int i;
|
|
|
|
/* Global plugins */
|
|
plugin__handle_tick_single(&db.config->security_options);
|
|
|
|
if(db.config->per_listener_settings){
|
|
for(i=0; i<db.config->listener_count; i++){
|
|
opts = &db.config->listeners[i].security_options;
|
|
if(opts && opts->plugin_callbacks.tick){
|
|
plugin__handle_tick_single(opts);
|
|
}
|
|
}
|
|
}
|
|
}
|