Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
847 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. precomp.h
  5. Abstract:
  6. Precompiled header file for firewall console logger.
  7. Author:
  8. Jonathan Burstein (jonburs) 12-April-2000
  9. Revision History:
  10. --*/
  11. #include <windows.h>
  12. #include <wmistr.h>
  13. #include <evntrace.h>
  14. #include <stdio.h>
  15. #include <tchar.h>
  16. #include <process.h>
  17. #include <winsock2.h>
  18. #include "natschma.h"
  19. #define NAT_PROTOCOL_ICMP 0x01
  20. #define NAT_PROTOCOL_IGMP 0x02
  21. #define NAT_PROTOCOL_TCP 0x06
  22. #define NAT_PROTOCOL_UDP 0x11
  23. #define NAT_PROTOCOL_PPTP 0x2F
  24. #define TCP_FLAG_FIN 0x0100
  25. #define TCP_FLAG_SYN 0x0200
  26. #define TCP_FLAG_RST 0x0400
  27. #define TCP_FLAG_PSH 0x0800
  28. #define TCP_FLAG_ACK 0x1000
  29. #define TCP_FLAG_URG 0x2000