Fix test.

This commit is contained in:
Roger Light
2021-03-14 13:13:44 +00:00
parent 1e94e08843
commit fecf550cad
3 changed files with 19 additions and 0 deletions
+6
View File
@@ -186,3 +186,9 @@ void db__msg_store_ref_inc(struct mosquitto_msg_store *store)
store->ref_count++;
}
void callback__on_disconnect(struct mosquitto *mosq, int rc, const mosquitto_property *props)
{
UNUSED(mosq);
UNUSED(rc);
UNUSED(props);
}
+7
View File
@@ -113,3 +113,10 @@ int send__pubrel(struct mosquitto *mosq, uint16_t mid, const mosquitto_property
return MOSQ_ERR_SUCCESS;
}
void callback__on_disconnect(struct mosquitto *mosq, int rc, const mosquitto_property *props)
{
UNUSED(mosq);
UNUSED(rc);
UNUSED(props);
}
+6
View File
@@ -36,3 +36,9 @@ int send__pingreq(struct mosquitto *mosq)
return MOSQ_ERR_SUCCESS;
}
void callback__on_disconnect(struct mosquitto *mosq, int rc, const mosquitto_property *props)
{
UNUSED(mosq);
UNUSED(rc);
UNUSED(props);
}