mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-04-13 00:49:31 +02:00
10 lines
262 B
C++
10 lines
262 B
C++
#include "libmosquitto_mock.hpp"
|
|
|
|
|
|
int mosquitto_socks5_set(struct mosquitto *mosq, const char *host,
|
|
int port, const char *username, const char *password)
|
|
{
|
|
return LibMosquittoMock::get_mock().mosquitto_socks5_set(mosq,
|
|
host, port, username, password);
|
|
}
|