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

Fork of libMiMic by Ryo Iizuka

Committer:
nyatla
Date:
Wed Nov 19 14:45:17 2014 +0000
Revision:
109:18f12ac01097
Parent:
71:855020258513
new MiMicIP API;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nyatla 2:b96c1e90d120 1 /*********************************************************************************
nyatla 2:b96c1e90d120 2 * PROJECT: MiMic
nyatla 2:b96c1e90d120 3 * --------------------------------------------------------------------------------
nyatla 2:b96c1e90d120 4 *
nyatla 2:b96c1e90d120 5 * This file is part of MiMic
nyatla 2:b96c1e90d120 6 * Copyright (C)2011 Ryo Iizuka
nyatla 2:b96c1e90d120 7 *
nyatla 2:b96c1e90d120 8 * MiMic is free software: you can redistribute it and/or modify
nyatla 2:b96c1e90d120 9 * it under the terms of the GNU Lesser General Public License as published
nyatla 2:b96c1e90d120 10 * by the Free Software Foundation, either version 3 of the License, or
nyatla 2:b96c1e90d120 11 * (at your option) any later version.
nyatla 2:b96c1e90d120 12 *
nyatla 2:b96c1e90d120 13 * This program is distributed in the hope that it will be useful,
nyatla 2:b96c1e90d120 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nyatla 2:b96c1e90d120 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
nyatla 2:b96c1e90d120 16 * GNU General Public License for more details.
nyatla 2:b96c1e90d120 17 *
nyatla 2:b96c1e90d120 18 * You should have received a copy of the GNU Lesser General Public License
nyatla 2:b96c1e90d120 19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
nyatla 2:b96c1e90d120 20 *
nyatla 2:b96c1e90d120 21 * For further information please contact.
nyatla 2:b96c1e90d120 22 * http://nyatla.jp/
nyatla 2:b96c1e90d120 23 * <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>
nyatla 2:b96c1e90d120 24 *
nyatla 2:b96c1e90d120 25 *********************************************************************************/
nyatla 2:b96c1e90d120 26 /**
nyatla 2:b96c1e90d120 27 * @file
nyatla 2:b96c1e90d120 28 * このファイルは、mimicVmディレクトリ以下に宣言されるヘッダファイルを集積します。
nyatla 2:b96c1e90d120 29 */
nyatla 2:b96c1e90d120 30 #ifndef NYLPC_NET_H_
nyatla 2:b96c1e90d120 31 #define NYLPC_NET_H_
nyatla 2:b96c1e90d120 32
nyatla 37:fc4b4fd6a649 33 #include "../net/mdns/NyLPC_cMDnsServer.h"
nyatla 37:fc4b4fd6a649 34
nyatla 2:b96c1e90d120 35 #include "../net/httpd/NyLPC_cHttpdConnection.h"
nyatla 2:b96c1e90d120 36 #include "../net/httpd/NyLPC_cHttpd.h"
nyatla 14:4618692ec239 37 #include "../net/httpd/NyLPC_cHttpdUtils.h"
nyatla 14:4618692ec239 38
nyatla 41:2389bd6b6f74 39 #include "../net/httpd/mod/NyLPC_cModFileIoBaseClass.h"
nyatla 2:b96c1e90d120 40 #include "../net/httpd/mod/NyLPC_cModRemoteMcu.h"
nyatla 2:b96c1e90d120 41 #include "../net/httpd/mod/NyLPC_cModMiMicSetting.h"
nyatla 57:bc4330dfa62f 42 #include "../net/httpd/mod/NyLPC_cModWebSocket.h"
nyatla 2:b96c1e90d120 43 #include "../net/httpd/mod/NyLPC_cModRomFiles.h"
nyatla 14:4618692ec239 44 #include "../net/httpd/mod/NyLPC_cModUrl.h"
nyatla 48:00d211aac2ec 45 #include "../net/httpd/mod/NyLPC_cModUPnPDevice.h"
nyatla 71:855020258513 46 #include "../net/httpd/mod/NyLPC_cModJsonRpc.h"
nyatla 2:b96c1e90d120 47
nyatla 57:bc4330dfa62f 48 #include "../net/httpcl/NyLPC_cHttpClient.h"
nyatla 57:bc4330dfa62f 49
nyatla 57:bc4330dfa62f 50
nyatla 48:00d211aac2ec 51 #include "../net/upnp/NyLPC_cSsdpSocket.h"
nyatla 48:00d211aac2ec 52 #include "../net/upnp/NyLPC_cUPnP.h"
nyatla 2:b96c1e90d120 53
nyatla 2:b96c1e90d120 54 #ifdef __cplusplus
nyatla 2:b96c1e90d120 55 extern "C" {
nyatla 2:b96c1e90d120 56 #endif /* __cplusplus */
nyatla 2:b96c1e90d120 57
nyatla 2:b96c1e90d120 58 #ifdef __cplusplus
nyatla 2:b96c1e90d120 59 }
nyatla 2:b96c1e90d120 60 #endif /* __cplusplus */
nyatla 2:b96c1e90d120 61
nyatla 2:b96c1e90d120 62 #endif