OSDN Git Service

update libMiMic
[mimic/MiMicSDK.git] / lib / src / http / NyLPC_cHttpBasicBodyParser.h
index 22f7192..77ea1f7 100644 (file)
@@ -19,8 +19,8 @@
  * 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
+ *  http://nyatla.jp/\r
+ *  <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>\r
  *\r
  *********************************************************************************/\r
 \r
@@ -47,16 +47,16 @@ typedef struct NyLPC_TcHttpBasicBodyParser NyLPC_TcHttpBasicBodyParser_t;
  * BodyParserのステータス定義値。\r
  */\r
 typedef NyLPC_TUInt8 NyLPC_TcHttpBasicBodyParser_ST;\r
-#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_HEADER_START      ((NyLPC_TcHttpBasicBodyParser_ST)0x11)//ヘッダ解析待ち\r
-#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_HEADER_SP         ((NyLPC_TcHttpBasicBodyParser_ST)0x12)//ヘッダ解析中\r
-#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_HEADER_EXT                ((NyLPC_TcHttpBasicBodyParser_ST)0x13)//ヘッダ解析中\r
-#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_BODY                      ((NyLPC_TcHttpBasicBodyParser_ST)0x14)//フッタ解析中\r
-#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_FOOTER                    ((NyLPC_TcHttpBasicBodyParser_ST)0x15)//フッタ解析中\r
-#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_END                               ((NyLPC_TcHttpBasicBodyParser_ST)0x16)//フッタ解析中\r
-#define NyLPC_TcHttpBasicBodyParser_ST_BODY                                    ((NyLPC_TcHttpBasicBodyParser_ST)0x17)//BODYパース中\r
-#define NyLPC_TcHttpBasicBodyParser_ST_EOB                                     ((NyLPC_TcHttpBasicBodyParser_ST)0x7F)//BODY確定\r
-#define NyLPC_TcHttpBasicBodyParser_ST_ERROR                                   ((NyLPC_TcHttpBasicBodyParser_ST)0x80)//終わり\r
-#define NyLPC_TcHttpBasicBodyParser_ST_NULL                                    ((NyLPC_TcHttpBasicBodyParser_ST)0x00)//初期状態\r
+#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_HEADER_START   ((NyLPC_TcHttpBasicBodyParser_ST)0x11)//ヘッダ解析待ち\r
+#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_HEADER_SP      ((NyLPC_TcHttpBasicBodyParser_ST)0x12)//ヘッダ解析中\r
+#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_HEADER_EXT     ((NyLPC_TcHttpBasicBodyParser_ST)0x13)//ヘッダ解析中\r
+#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_BODY           ((NyLPC_TcHttpBasicBodyParser_ST)0x14)//フッタ解析中\r
+#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_FOOTER         ((NyLPC_TcHttpBasicBodyParser_ST)0x15)//フッタ解析中\r
+#define NyLPC_TcHttpBasicBodyParser_ST_CHUNK_END                ((NyLPC_TcHttpBasicBodyParser_ST)0x16)//フッタ解析中\r
+#define NyLPC_TcHttpBasicBodyParser_ST_BODY                 ((NyLPC_TcHttpBasicBodyParser_ST)0x17)//BODYパース中\r
+#define NyLPC_TcHttpBasicBodyParser_ST_EOB                  ((NyLPC_TcHttpBasicBodyParser_ST)0x7F)//BODY確定\r
+#define NyLPC_TcHttpBasicBodyParser_ST_ERROR                    ((NyLPC_TcHttpBasicBodyParser_ST)0x80)//終わり\r
+#define NyLPC_TcHttpBasicBodyParser_ST_NULL                 ((NyLPC_TcHttpBasicBodyParser_ST)0x00)//初期状態\r
 \r
 \r
 #define NyLPC_TcHttpBasicBodyParser_ST_isError(i_v) ((i_v)==NyLPC_TcHttpBasicBodyParser_ST_ERROR)\r
@@ -69,7 +69,7 @@ typedef NyLPC_TBool (*NyLPC_TcHttpBasicBodyParser_bodyHandler) (NyLPC_TcHttpBasi
 \r
 struct NyLPC_TcHttpBasicBodyParser_Handler\r
 {\r
-       NyLPC_TcHttpBasicBodyParser_bodyHandler bodyHandler;\r
+    NyLPC_TcHttpBasicBodyParser_bodyHandler bodyHandler;\r
 };\r
 \r
 \r
@@ -80,17 +80,17 @@ struct NyLPC_TcHttpBasicBodyParser_Handler
  */\r
 struct NyLPC_TcHttpBasicBodyParser\r
 {\r
-       NyLPC_THttpMessgeHeader_TransferEncoding _encode_type;\r
-       NyLPC_TcHttpBasicBodyParser_ST _status;\r
-       union{\r
-               struct{\r
-                       int recv_len;\r
-               }chunked;\r
-               struct{\r
-                       NyLPC_TUInt32 content_length;\r
-               }normal;\r
-       }_data;\r
-       struct NyLPC_TcHttpBasicBodyParser_Handler* _handler;\r
+    NyLPC_THttpMessgeHeader_TransferEncoding _encode_type;\r
+    NyLPC_TcHttpBasicBodyParser_ST _status;\r
+    union{\r
+        struct{\r
+            int recv_len;\r
+        }chunked;\r
+        struct{\r
+            NyLPC_TUInt32 content_length;\r
+        }normal;\r
+    }_data;\r
+    struct NyLPC_TcHttpBasicBodyParser_Handler* _handler;\r
 };\r
 \r
 \r