00001 #ifndef SIPPACKET_H_ 00002 #define SIPPACKET_H_ 00003 00004 #include "NetPacket.h" 00005 #include <iostream> 00006 00007 using namespace std; 00008 00009 namespace network 00010 { 00011 00024 class SIPPacket : public network::NetPacket 00025 { 00026 public: 00028 SIPPacket(); 00034 SIPPacket(string asciidata); 00036 virtual ~SIPPacket(); 00037 00038 private: 00040 string raw_data; 00042 string status_line; 00044 string via; 00046 string from; 00048 string to; 00049 }; 00050 00051 } 00052 00053 #endif /*SIPPACKET_H_*/