mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-06 11:12:09 +08:00
10 lines
250 B
C++
10 lines
250 B
C++
#include "libmosquitto_mock.hpp"
|
|
|
|
|
|
int mosquitto_connect_srv(struct mosquitto *mosq, const char *host,
|
|
int keepalive, const char *bind_address)
|
|
{
|
|
return LibMosquittoMock::get_mock().mosquitto_connect_srv(mosq,
|
|
host, keepalive, bind_address);
|
|
}
|