/* WiFiUdp.cpp - UDP client/server for esp8266, mostly compatible with Arduino WiFi shield library Copyright (c) 2015 Ivan Grokhotkov. All rights reserved. This file is part of the esp8266 core for Arduino environment. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #define LWIP_INTERNAL #include extern "C" { #include "include/wl_definitions.h" #include "osapi.h" #include "ets_sys.h" } #include "debug.h" #include "ESP8266WiFi.h" #include "WiFiUdp.h" #include "lwip/opt.h" #include "lwip/udp.h" #include "lwip/inet.h" #include "lwip/igmp.h" #include "lwip/mem.h" #include template<> WiFiUDP* SList::_s_first = 0; /* Constructor */ WiFiUDP::WiFiUDP() : _ctx(0) { WiFiUDP::_add(this); } WiFiUDP::WiFiUDP(const WiFiUDP& other) { _ctx = other._ctx; if (_ctx) _ctx->ref(); WiFiUDP::_add(this); } WiFiUDP& WiFiUDP::operator=(const WiFiUDP& rhs) { _ctx = rhs._ctx; if (_ctx) _ctx->ref(); return *this; } WiFiUDP::~WiFiUDP() { WiFiUDP::_remove(this); if (_ctx) _ctx->unref(); } /* Start WiFiUDP socket, listening at local port */ uint8_t WiFiUDP::begin(uint16_t port) { if (_ctx) { _ctx->unref(); _ctx = 0; } _ctx = new UdpContext; _ctx->ref(); return (_ctx->listen(IPAddress(), port)) ? 1 : 0; } uint8_t WiFiUDP::beginMulticast(IPAddress interfaceAddr, IPAddress multicast, uint16_t port) { if (_ctx) { _ctx->unref(); _ctx = 0; } if (igmp_joingroup(interfaceAddr, multicast)!= ERR_OK) { return 0; } _ctx = new UdpContext; _ctx->ref(); ip_addr_t addr = IPADDR4_INIT(INADDR_ANY); if (!_ctx->listen(&addr, port)) { return 0; } return 1; } /* return number of bytes available in the current packet, will return zero if parsePacket hasn't been called yet */ int WiFiUDP::available() { int result = 0; if (_ctx) { result = static_cast(_ctx->getSize()); } if (!result) { // yielding here will not make more data "available", // but it will prevent the system from going into WDT reset optimistic_yield(1000); } return result; } /* Release any resources being used by this WiFiUDP instance */ void WiFiUDP::stop() { if (_ctx) { _ctx->disconnect(); _ctx->unref(); } _ctx = 0; } int WiFiUDP::beginPacket(const char *host, uint16_t port) { IPAddress remote_addr; if (WiFi.hostByName(host, remote_addr)) { return beginPacket(remote_addr, port); } return 0; } int WiFiUDP::beginPacket(IPAddress ip, uint16_t port) { if (!_ctx) { _ctx = new UdpContext; _ctx->ref(); } return (_ctx->connect(ip, port)) ? 1 : 0; } int WiFiUDP::beginPacketMulticast(IPAddress multicastAddress, uint16_t port, IPAddress interfaceAddress, int ttl) { if (!_ctx) { _ctx = new UdpContext; _ctx->ref(); } if (!_ctx->connect(multicastAddress, port)) { return 0; } _ctx->setMulticastInterface(interfaceAddress); _ctx->setMulticastTTL(ttl); return 1; } int WiFiUDP::endPacket() { if (!_ctx) return 0; return (_ctx->send()) ? 1 : 0; } size_t WiFiUDP::write(uint8_t byte) { return write(&byte, 1); } size_t WiFiUDP::write(const uint8_t *buffer, size_t size) { if (!_ctx) return 0; return _ctx->append(reinterpret_cast(buffer), size); } int WiFiUDP::parsePacket() { if (!_ctx) return 0; if (!_ctx->next()) { optimistic_yield(100); return 0; } return _ctx->getSize(); } int WiFiUDP::read() { if (!_ctx) return -1; return _ctx->read(); } int WiFiUDP::read(unsigned char* buffer, size_t len) { if (!_ctx) return 0; return _ctx->read(reinterpret_cast(buffer), len); } int WiFiUDP::peek() { if (!_ctx) return -1; return _ctx->peek(); } void WiFiUDP::flush() { endPacket(); } IPAddress WiFiUDP::remoteIP() { if (!_ctx) return INADDR_ANY; return _ctx->getRemoteAddress(); } uint16_t WiFiUDP::remotePort() { if (!_ctx) return 0; return _ctx->getRemotePort(); } IPAddress WiFiUDP::destinationIP() const { if (!_ctx) return INADDR_ANY; return _ctx->getDestAddress(); } uint16_t WiFiUDP::localPort() const { if (!_ctx) return 0; return _ctx->getLocalPort(); } void WiFiUDP::stopAll() { for (WiFiUDP* it = _s_first; it; it = it->_next) { DEBUGV("%s %p %p\n", __func__, it, _s_first); it->stop(); } } void WiFiUDP::stopAllExcept(WiFiUDP * exC) { for (WiFiUDP* it = _s_first; it; it = it->_next) { if (it->_ctx != exC->_ctx) { DEBUGV("%s %p %p\n", __func__, it, _s_first); it->stop(); } } }