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

Fork of libMiMic by Ryo Iizuka

Committer:
nyatla
Date:
Tue Jun 10 03:30:41 2014 +0000
Revision:
71:855020258513
Parent:
57:bc4330dfa62f
Child:
109:18f12ac01097
MiMic-core ?358???; modJsonRPC???????????;

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 #include "../net/NyLPC_cNet.h"
nyatla 2:b96c1e90d120 33
nyatla 37:fc4b4fd6a649 34 #include "../net/mdns/NyLPC_cMDnsServer.h"
nyatla 37:fc4b4fd6a649 35 #include "../net/apipa/NyLPC_cApipa.h"
nyatla 37:fc4b4fd6a649 36
nyatla 2:b96c1e90d120 37 #include "../net/httpd/NyLPC_cHttpdConnection.h"
nyatla 2:b96c1e90d120 38 #include "../net/httpd/NyLPC_cHttpd.h"
nyatla 14:4618692ec239 39 #include "../net/httpd/NyLPC_cHttpdUtils.h"
nyatla 14:4618692ec239 40
nyatla 41:2389bd6b6f74 41 #include "../net/httpd/mod/NyLPC_cModFileIoBaseClass.h"
nyatla 2:b96c1e90d120 42 #include "../net/httpd/mod/NyLPC_cModRemoteMcu.h"
nyatla 2:b96c1e90d120 43 #include "../net/httpd/mod/NyLPC_cModMiMicSetting.h"
nyatla 57:bc4330dfa62f 44 #include "../net/httpd/mod/NyLPC_cModWebSocket.h"
nyatla 2:b96c1e90d120 45 #include "../net/httpd/mod/NyLPC_cModRomFiles.h"
nyatla 14:4618692ec239 46 #include "../net/httpd/mod/NyLPC_cModUrl.h"
nyatla 48:00d211aac2ec 47 #include "../net/httpd/mod/NyLPC_cModUPnPDevice.h"
nyatla 71:855020258513 48 #include "../net/httpd/mod/NyLPC_cModJsonRpc.h"
nyatla 2:b96c1e90d120 49
nyatla 57:bc4330dfa62f 50 #include "../net/httpcl/NyLPC_cHttpClient.h"
nyatla 57:bc4330dfa62f 51
nyatla 57:bc4330dfa62f 52
nyatla 48:00d211aac2ec 53 #include "../net/upnp/NyLPC_cSsdpSocket.h"
nyatla 48:00d211aac2ec 54 #include "../net/upnp/NyLPC_cUPnP.h"
nyatla 2:b96c1e90d120 55
nyatla 2:b96c1e90d120 56 #ifdef __cplusplus
nyatla 2:b96c1e90d120 57 extern "C" {
nyatla 2:b96c1e90d120 58 #endif /* __cplusplus */
nyatla 2:b96c1e90d120 59
nyatla 2:b96c1e90d120 60 #ifdef __cplusplus
nyatla 2:b96c1e90d120 61 }
nyatla 2:b96c1e90d120 62 #endif /* __cplusplus */
nyatla 2:b96c1e90d120 63
nyatla 2:b96c1e90d120 64 #endif