Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
c-utility/adapters/tcpsocketconnection_c.cpp
- Committer:
- XinZhangMS
- Date:
- 2018-08-23
- Revision:
- 0:f7f1f0d76dd6
File content as of revision 0:f7f1f0d76dd6:
// 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 "TCPSocket.h" #include "azure_c_shared_utility/tcpsocketconnection_c.h" extern NetworkInterface *network; bool tcpsocketconnection_isConnected = false; TCPSOCKETCONNECTION_HANDLE tcpsocketconnection_create(void) { TCPSocket* tcpSocket = new TCPSocket(); tcpSocket->open(network); return tcpSocket; } void tcpsocketconnection_set_blocking(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, bool blocking, unsigned int timeout) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; tsc->set_blocking(blocking); tsc->set_timeout(timeout); } void tcpsocketconnection_destroy(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle) { delete (TCPSocket*)tcpSocketConnectionHandle; } int tcpsocketconnection_connect(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, const char* host, const int port) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; int ret = tsc->connect(host, port); tcpsocketconnection_isConnected = true; return ret; } bool tcpsocketconnection_is_connected(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; return tcpsocketconnection_isConnected; } void tcpsocketconnection_close(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; tcpsocketconnection_isConnected = false; tsc->close(); } int tcpsocketconnection_send(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, const char* data, int length) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; int ret = tsc->send((char*)data, length); return ret; } int tcpsocketconnection_send_all(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, const char* data, int length) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; return tsc->send((char*)data, length); } int tcpsocketconnection_receive(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, char* data, int length) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; int ret = tsc->recv(data, length); return ret; } int tcpsocketconnection_receive_all(TCPSOCKETCONNECTION_HANDLE tcpSocketConnectionHandle, char* data, int length) { TCPSocket* tsc = (TCPSocket*)tcpSocketConnectionHandle; return tsc->recv(data, length); }