mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-09-25 02:33:51 +08:00
Fix test.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user