This is Webservice SDK for mbed. LPCXpresso1769/LPC1768/FRDM-K64F/LPC4088

Fork of libMiMic by Ryo Iizuka

Committer:
furutani
Date:
Fri Feb 24 04:43:41 2017 +0000
Revision:
115:fa79286d8ea4
Parent:
110:257739f9b31e
Delete missing include line.; Add parameter "timeout" to TCPSocket::connect(), precv().; Fix to send ARP request to default gateway when connecting to IP address of different segment.;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nyatla 109:18f12ac01097 1 /*********************************************************************************
nyatla 109:18f12ac01097 2 * PROJECT: MiMic
nyatla 109:18f12ac01097 3 * --------------------------------------------------------------------------------
nyatla 109:18f12ac01097 4 *
nyatla 109:18f12ac01097 5 * This file is part of MiMic
nyatla 109:18f12ac01097 6 * Copyright (C)2011 Ryo Iizuka
nyatla 109:18f12ac01097 7 *
nyatla 109:18f12ac01097 8 * MiMic is free software: you can redistribute it and/or modify
nyatla 109:18f12ac01097 9 * it under the terms of the GNU Lesser General Public License as published
nyatla 109:18f12ac01097 10 * by the Free Software Foundation, either version 3 of the License, or
nyatla 109:18f12ac01097 11 * (at your option) any later version.
nyatla 109:18f12ac01097 12 *
nyatla 109:18f12ac01097 13 * This program is distributed in the hope that it will be useful,
nyatla 109:18f12ac01097 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nyatla 109:18f12ac01097 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
nyatla 109:18f12ac01097 16 * GNU General Public License for more details.
nyatla 109:18f12ac01097 17 *
nyatla 109:18f12ac01097 18 * You should have received a copy of the GNU Lesser General Public License
nyatla 109:18f12ac01097 19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
nyatla 109:18f12ac01097 20 *
nyatla 109:18f12ac01097 21 * For further information please contact.
nyatla 109:18f12ac01097 22 * http://nyatla.jp/
nyatla 109:18f12ac01097 23 * <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>
nyatla 109:18f12ac01097 24 *
nyatla 109:18f12ac01097 25 *********************************************************************************/
nyatla 109:18f12ac01097 26 /**
nyatla 109:18f12ac01097 27 * @file
nyatla 109:18f12ac01097 28 * このファイルは、uipディレクトリにあるヘッダファイルを集積します。
nyatla 109:18f12ac01097 29 */
nyatla 109:18f12ac01097 30 #ifndef NyLPC_uipService_H
nyatla 109:18f12ac01097 31 #define NyLPC_uipService_H
nyatla 109:18f12ac01097 32
nyatla 109:18f12ac01097 33 #include "NyLPC_stdlib.h"
nyatla 109:18f12ac01097 34 #include "../netif/NyLPC_cIPv4Config.h"
nyatla 109:18f12ac01097 35 #include "../netif/NyLPC_iTcpListener.h"
nyatla 109:18f12ac01097 36 #include "../netif/NyLPC_iTcpSocket.h"
nyatla 109:18f12ac01097 37 #include "../netif/NyLPC_iUdpSocket.h"
nyatla 109:18f12ac01097 38 #include "../netif/NyLPC_NetIf_ip_types.h"
nyatla 110:257739f9b31e 39 #include "../netif/NyLPC_cNet.h"
nyatla 110:257739f9b31e 40 #include "../netif/NyLPC_iNetInterface.h"
nyatla 110:257739f9b31e 41
nyatla 109:18f12ac01097 42 #ifdef __cplusplus
nyatla 109:18f12ac01097 43 extern "C" {
nyatla 109:18f12ac01097 44 #endif /* __cplusplus */
nyatla 109:18f12ac01097 45
nyatla 109:18f12ac01097 46 #ifdef __cplusplus
nyatla 109:18f12ac01097 47 }
nyatla 109:18f12ac01097 48 #endif /* __cplusplus */
nyatla 109:18f12ac01097 49
nyatla 109:18f12ac01097 50
nyatla 109:18f12ac01097 51
nyatla 109:18f12ac01097 52 #endif