1
0
mirror of https://github.com/eclipse/mosquitto.git synced 2025-05-09 01:01:11 +08:00
This commit is contained in:
Roger A. Light 2021-10-01 17:24:19 +01:00
parent f7a57add81
commit c28110d079

View File

@ -186,3 +186,14 @@ void db__msg_store_ref_inc(struct mosquitto_msg_store *store)
store->ref_count++;
}
void db__msg_add_to_inflight_stats(struct mosquitto_msg_data *msg_data, struct mosquitto_client_msg *msg)
{
UNUSED(msg_data);
UNUSED(msg);
}
void db__msg_add_to_queued_stats(struct mosquitto_msg_data *msg_data, struct mosquitto_client_msg *msg)
{
UNUSED(msg_data);
UNUSED(msg);
}