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.
web_socket_transport.h
00001 /** 00002 * @file web_socket_transport.h 00003 * @brief WebSocket transport layer 00004 * 00005 * @section License 00006 * 00007 * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved. 00008 * 00009 * This file is part of CycloneTCP Open. 00010 * 00011 * This program is free software; you can redistribute it and/or 00012 * modify it under the terms of the GNU General Public License 00013 * as published by the Free Software Foundation; either version 2 00014 * of the License, or (at your option) any later version. 00015 * 00016 * This program is distributed in the hope that it will be useful, 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 * GNU General Public License for more details. 00020 * 00021 * You should have received a copy of the GNU General Public License 00022 * along with this program; if not, write to the Free Software Foundation, 00023 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00024 * 00025 * @author Oryx Embedded SARL (www.oryx-embedded.com) 00026 * @version 1.7.6 00027 **/ 00028 00029 #ifndef _WEB_SOCKET_TRANSPORT_H 00030 #define _WEB_SOCKET_TRANSPORT_H 00031 00032 //Dependencies 00033 #include "core/net.h" 00034 #include "web_socket/web_socket.h" 00035 00036 //WebSocket related functions 00037 error_t webSocketOpenConnection(WebSocket *webSocket); 00038 00039 error_t webSocketEstablishConnection(WebSocket *webSocket, 00040 const IpAddr *serverIpAddr, uint16_t serverPort); 00041 00042 error_t webSocketShutdownConnection(WebSocket *webSocket); 00043 void webSocketCloseConnection(WebSocket *webSocket); 00044 00045 error_t webSocketSendData(WebSocket *webSocket, const void *data, 00046 size_t length, size_t *written, uint_t flags); 00047 00048 error_t webSocketReceiveData(WebSocket *webSocket, void *data, 00049 size_t size, size_t *received, uint_t flags); 00050 00051 #endif 00052
Generated on Tue Jul 12 2022 17:10:17 by
1.7.2