Files
netch/Redirector/DNSHandler.h
2021-10-17 16:13:43 +08:00

16 lines
290 B
C++

#pragma once
#ifndef DNSHANDLER_H
#define DNSHANDLER_H
#include "Based.h"
namespace DNSHandler
{
bool INIT();
bool IsDNS(PSOCKADDR_IN6 target);
void CreateHandler(ENDPOINT_ID id, PSOCKADDR_IN6 target, const char* packet, int length, PNF_UDP_OPTIONS options);
}
#endif