mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-04-13 00:49:31 +02: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);
|
|
}
|