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

Dependents:   MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Http.h Source File

Http.h

00001 #pragma once
00002 ////////////////////////////////////////////////////////////////////////////////
00003 // Httpd.h
00004 ////////////////////////////////////////////////////////////////////////////////
00005 
00006 #include "NyLPC_net.h"
00007 
00008 namespace MiMic
00009 {
00010     class Http
00011     {
00012     public:
00013         const static int MT_GET =NyLPC_THttpMethodType_GET;
00014         const static int MT_POST=NyLPC_THttpMethodType_POST;
00015         const static int MT_HEAD=NyLPC_THttpMethodType_HEAD;
00016     };
00017 }