Win32-Extensions.h
上传用户:gzdtt123
上传日期:2022-01-26
资源大小:88k
文件大小:3k
开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1999 - 2003
  3.  * NetGroup, Politecnico di Torino (Italy)
  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 nor the names of its
  16.  * contributors may be used to endorse or promote products derived from
  17.  * this software without specific prior written permission.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  *
  31.  */
  32. /* Definitions */
  33. /*!
  34.   brief A queue of raw packets that will be sent to the network with pcap_sendqueue_transmit().
  35. */
  36. struct pcap_send_queue{
  37. u_int maxlen; ///< Maximum size of the the queue, in bytes. This variable contains the size of the buffer field.
  38. u_int len; ///< Current size of the queue, in bytes.
  39. char *buffer; ///< Buffer containing the packets to be sent.
  40. };
  41. typedef struct pcap_send_queue pcap_send_queue;
  42. #define BPF_MEM_EX_IMM 0xc0
  43. #define BPF_MEM_EX_IND 0xe0
  44. /*used for ST*/
  45. #define BPF_MEM_EX 0xc0
  46. #define BPF_TME 0x08
  47. #define BPF_LOOKUP 0x90   
  48. #define BPF_EXECUTE 0xa0
  49. #define BPF_INIT 0xb0
  50. #define BPF_VALIDATE 0xc0
  51. #define BPF_SET_ACTIVE 0xd0
  52. #define BPF_RESET 0xe0
  53. #define BPF_SET_MEMORY 0x80
  54. #define BPF_GET_REGISTER_VALUE 0x70
  55. #define BPF_SET_REGISTER_VALUE 0x60
  56. #define BPF_SET_WORKING 0x50
  57. #define BPF_SET_ACTIVE_READ 0x40
  58. #define BPF_SET_AUTODELETION 0x30
  59. #define BPF_SEPARATION 0xff
  60. /* Prototypes */
  61. pcap_send_queue* pcap_sendqueue_alloc(u_int memsize);
  62. void pcap_sendqueue_destroy(pcap_send_queue* queue);
  63. int pcap_sendqueue_queue(pcap_send_queue* queue, const struct pcap_pkthdr *pkt_header, const u_char *pkt_data);
  64. u_int pcap_sendqueue_transmit(pcap_t *p, pcap_send_queue* queue, int sync);
  65. HANDLE pcap_getevent(pcap_t *p);
  66. struct pcap_stat *pcap_stats_ex(pcap_t *p, int *pcap_stat_size);
  67. int pcap_setuserbuffer(pcap_t *p, int size);
  68. int pcap_live_dump(pcap_t *p, char *filename, int maxsize, int maxpacks);
  69. int pcap_live_dump_ended(pcap_t *p, int sync);
  70. int pcap_offline_filter(struct bpf_program *prog, const struct pcap_pkthdr *header, const u_char *pkt_data);