Win32-Extensions.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy)
  3. * Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the Politecnico di Torino, CACE Technologies
  16. * nor the names of its contributors may be used to endorse or promote
  17. * products derived from this software without specific prior written
  18. * permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. */
  33. #ifndef __WIN32_EXTENSIONS_H__
  34. #define __WIN32_EXTENSIONS_H__
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. /* Definitions */
  39. /*!
  40. \brief A queue of raw packets that will be sent to the network with pcap_sendqueue_transmit().
  41. */
  42. struct pcap_send_queue
  43. {
  44. u_int maxlen; ///< Maximum size of the the queue, in bytes. This variable contains the size of the buffer field.
  45. u_int len; ///< Current size of the queue, in bytes.
  46. char *buffer; ///< Buffer containing the packets to be sent.
  47. };
  48. typedef struct pcap_send_queue pcap_send_queue;
  49. /*!
  50. \brief This typedef is a support for the pcap_get_airpcap_handle() function
  51. */
  52. #if !defined(AIRPCAP_HANDLE__EAE405F5_0171_9592_B3C2_C19EC426AD34__DEFINED_)
  53. #define AIRPCAP_HANDLE__EAE405F5_0171_9592_B3C2_C19EC426AD34__DEFINED_
  54. typedef struct _AirpcapHandle *PAirpcapHandle;
  55. #endif
  56. #define BPF_MEM_EX_IMM 0xc0
  57. #define BPF_MEM_EX_IND 0xe0
  58. /*used for ST*/
  59. #define BPF_MEM_EX 0xc0
  60. #define BPF_TME 0x08
  61. #define BPF_LOOKUP 0x90
  62. #define BPF_EXECUTE 0xa0
  63. #define BPF_INIT 0xb0
  64. #define BPF_VALIDATE 0xc0
  65. #define BPF_SET_ACTIVE 0xd0
  66. #define BPF_RESET 0xe0
  67. #define BPF_SET_MEMORY 0x80
  68. #define BPF_GET_REGISTER_VALUE 0x70
  69. #define BPF_SET_REGISTER_VALUE 0x60
  70. #define BPF_SET_WORKING 0x50
  71. #define BPF_SET_ACTIVE_READ 0x40
  72. #define BPF_SET_AUTODELETION 0x30
  73. #define BPF_SEPARATION 0xff
  74. /* Prototypes */
  75. pcap_send_queue* pcap_sendqueue_alloc(u_int memsize);
  76. void pcap_sendqueue_destroy(pcap_send_queue* queue);
  77. int pcap_sendqueue_queue(pcap_send_queue* queue, const struct pcap_pkthdr *pkt_header, const u_char *pkt_data);
  78. u_int pcap_sendqueue_transmit(pcap_t *p, pcap_send_queue* queue, int sync);
  79. HANDLE pcap_getevent(pcap_t *p);
  80. struct pcap_stat *pcap_stats_ex(pcap_t *p, int *pcap_stat_size);
  81. int pcap_setuserbuffer(pcap_t *p, int size);
  82. int pcap_live_dump(pcap_t *p, char *filename, int maxsize, int maxpacks);
  83. int pcap_live_dump_ended(pcap_t *p, int sync);
  84. int pcap_offline_filter(struct bpf_program *prog, const struct pcap_pkthdr *header, const u_char *pkt_data);
  85. int pcap_start_oem(char* err_str, int flags);
  86. PAirpcapHandle pcap_get_airpcap_handle(pcap_t *p);
  87. #ifdef __cplusplus
  88. }
  89. #endif
  90. #endif //__WIN32_EXTENSIONS_H__