mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
27 lines
336 B
C
27 lines
336 B
C
#pragma once
|
|
#ifndef DATA_H
|
|
#define DATA_H
|
|
#include <Windows.h>
|
|
|
|
#include <nfapi.h>
|
|
|
|
typedef enum _AIO_TYPE {
|
|
AIO_FILTERLOOP,
|
|
AIO_FILTERICMP,
|
|
AIO_FILTERTCP,
|
|
AIO_FILTERUDP,
|
|
|
|
AIO_CLRNAME,
|
|
AIO_ADDNAME,
|
|
AIO_BYPNAME,
|
|
|
|
AIO_DNSHOOK,
|
|
AIO_DNSHOST,
|
|
AIO_DNSPORT,
|
|
|
|
AIO_TCPPORT,
|
|
AIO_UDPPORT
|
|
} AIO_TYPE;
|
|
|
|
#endif
|