Azure IoT common library

Dependents:   STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more

Revision:
0:fa2de1b79154
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tcpsocketconnection_c.cpp	Fri Apr 08 12:01:36 2016 -0700
@@ -0,0 +1,67 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+#include "mbed.h"
+
+#include <stddef.h>
+#include "TCPSocketConnection.h"
+#include "azure_c_shared_utility/tcpsocketconnection_c.h"
+
+
+TCPSOCKETCONNECTION_HANDLE tcpsocketconnection_create(void)
+{
+    return new TCPSocketConnection();
+}
+
+void tcpsocketconnection_set_blocking(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, bool blocking, unsigned int timeout)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	tsc->set_blocking(blocking, timeout);
+}
+
+void tcpsocketconnection_destroy(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle)
+{
+	delete (TCPSocketConnection*)tcpSocketConnectionHandle;
+}
+
+int tcpsocketconnection_connect(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, const char* host, const int port)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	return tsc->connect(host, port);
+}
+
+bool tcpsocketconnection_is_connected(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	return tsc->is_connected();
+}
+
+void tcpsocketconnection_close(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	tsc->close();
+}
+
+int tcpsocketconnection_send(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, const char* data, int length)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	return tsc->send((char*)data, length);
+}
+
+int tcpsocketconnection_send_all(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, const char* data, int length)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	return tsc->send_all((char*)data, length);
+}
+
+int tcpsocketconnection_receive(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, char* data, int length)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	return tsc->receive(data, length);
+}
+
+int tcpsocketconnection_receive_all(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, char* data, int length)
+{
+	TCPSocketConnection* tsc = (TCPSocketConnection*)tcpSocketConnectionHandle;
+	return tsc->receive_all(data, length);
+}