CHENGQI YANG / SmartLab_MuRata
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TCPStatusIndication.h Source File

TCPStatusIndication.h

00001 #ifndef SmartLab_MuRata_Indication_TCPStatusIndication
00002 #define SmartLab_MuRata_Indication_TCPStatusIndication
00003 
00004 #include "Payload.h"
00005 #include "SNICCode.h"
00006 
00007 namespace SmartLabMuRata
00008 {
00009 class TCPStatusIndication : public Payload
00010 {
00011 private:
00012     char socketID;
00013 
00014 public :
00015     TCPStatusIndication(Payload * payload);
00016 
00017     SNICCode GetStatus();
00018 
00019     char GetSocketID();
00020 };
00021 }
00022 
00023 #endif