aboutsummaryrefslogtreecommitdiff
path: root/src/private.h
diff options
context:
space:
mode:
authorOskari Timperi <oskari.timperi@iki.fi>2017-02-19 13:26:47 +0200
committerOskari Timperi <oskari.timperi@iki.fi>2017-02-19 13:26:47 +0200
commitd8d647e4360b9570259ba9834f64b7d78ad36968 (patch)
treec0d074366a6e676f9a70a5d093c208d9661ba738 /src/private.h
parent6748a038cf62cfb6e817f758ce8255e0e2debe60 (diff)
downloadmqtt-d8d647e4360b9570259ba9834f64b7d78ad36968.tar.gz
mqtt-d8d647e4360b9570259ba9834f64b7d78ad36968.zip
Add private APIs to support interop testing
Diffstat (limited to 'src/private.h')
-rw-r--r--src/private.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/private.h b/src/private.h
new file mode 100644
index 0000000..5a0f4d0
--- /dev/null
+++ b/src/private.h
@@ -0,0 +1,10 @@
+#ifndef MQTT_PRIVATE_H
+#define MQTT_PRIVATE_H
+
+#include "mqtt.h"
+
+void MqttClientPause(MqttClient *client);
+
+void MqttClientResume(MqttClient *client);
+
+#endif