OSDN Git Service

update libMiMic
[mimic/MiMicSDK.git] / lib / src / uip / NyLPC_cBaseSocket.h
diff --git a/lib/src/uip/NyLPC_cBaseSocket.h b/lib/src/uip/NyLPC_cBaseSocket.h
deleted file mode 100644 (file)
index 01a3c90..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/*********************************************************************************\r
- * PROJECT: MiMic\r
- * --------------------------------------------------------------------------------\r
- *\r
- * This file is part of MiMic\r
- * Copyright (C)2011 Ryo Iizuka\r
- *\r
- * MiMic is free software: you can redistribute it and/or modify\r
- * it under the terms of the GNU Lesser General Public License as published\r
- * by the Free Software Foundation, either version 3 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU Lesser General Public License\r
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
- *\r
- * For further information please contact.\r
- *     http://nyatla.jp/\r
- *     <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>\r
- *\r
- *********************************************************************************/\r
-#ifndef NYLPC_CBASESOCKET_H_\r
-#define NYLPC_CBASESOCKET_H_\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif /* __cplusplus */\r
-\r
-#include "NyLPC_stdlib.h"\r
-#include "NyLPC_cIPv4_typedef.h"\r
-\r
-/**\r
- * Base socket class\r
- * cIPv4 classが管理するソケットオブジェクトのベースクラスです。\r
- */\r
-typedef struct NyLPC_TcBaseSocket NyLPC_TcBaseSocket_t;\r
-\r
-#define NyLPC_TcBaseSocket_TYPEID_UDP_SOCK 1\r
-#define NyLPC_TcBaseSocket_TYPEID_TCP_SOCK 2\r
-#define NyLPC_TcBaseSocket_TYPEID_TCP_LISTENER 3\r
-\r
-struct NyLPC_TcBaseSocket\r
-{\r
-       /**タイプID 継承クラスのinitializerで設定。 */\r
-       NyLPC_TUInt8 _typeid;\r
-       NyLPC_TUInt8 _padding8;\r
-       NyLPC_TUInt16 _padding16;\r
-       /** 所属してるIPv4コンローラ*/\r
-       NyLPC_TcIPv4_t* _parent_ipv4;\r
-};\r
-void NyLPC_cBaseSocket_initialize(NyLPC_TcBaseSocket_t* i_inst,NyLPC_TUInt8 i_typeid);\r
-#define NyLPC_cBaseSocket_finalize(i_inst)\r
-\r
-\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif /* __cplusplus */\r
-\r
-#endif /* NYLPC_CBASESOCKET_H_ */\r