Ip.cpp
上传用户:karykuang
上传日期:2010-02-26
资源大小:103k
文件大小:2k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. // ICMP_HEADER.cpp: implementation of the ICMP_HEADER class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "demo.h"
  6. #include "IP.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. ICMP_HEADER::ICMP_HEADER()
  16. {
  17. sequence=0x0000;
  18. }
  19. ICMP_HEADER::~ICMP_HEADER()
  20. {
  21. }
  22. //////////////////////////////////////////////////////////////////////
  23. // PPP_OPTION Class
  24. //////////////////////////////////////////////////////////////////////
  25. //////////////////////////////////////////////////////////////////////
  26. // Construction/Destruction
  27. //////////////////////////////////////////////////////////////////////
  28. PPP_OPTION::PPP_OPTION()
  29. {
  30. }
  31. PPP_OPTION::~PPP_OPTION()
  32. {
  33. }
  34. //////////////////////////////////////////////////////////////////////
  35. // IP_HEADER Class
  36. //////////////////////////////////////////////////////////////////////
  37. //////////////////////////////////////////////////////////////////////
  38. // Construction/Destruction
  39. //////////////////////////////////////////////////////////////////////
  40. IP_HEADER::IP_HEADER()
  41. {
  42. Identification=0x0000;
  43. }
  44. IP_HEADER::~IP_HEADER()
  45. {
  46. }
  47. //////////////////////////////////////////////////////////////////////
  48. // PPP_UDP Class
  49. //////////////////////////////////////////////////////////////////////
  50. //////////////////////////////////////////////////////////////////////
  51. // Construction/Destruction
  52. //////////////////////////////////////////////////////////////////////
  53. PPP_UDP::PPP_UDP()
  54. {
  55. }
  56. PPP_UDP::~PPP_UDP()
  57. {
  58. }