mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-11 02:51:21 +08:00
16 lines
290 B
C++
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
|