Files
Archive/netch/Redirector/DNSHandler.h
2024-03-05 02:32:38 -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