You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/dnsd.hpp

41 lines
610 B
C++

#ifndef LIBLLARP_DNSD_HPP
#define LIBLLARP_DNSD_HPP
#include "dnsc.hpp"
#include <string>
struct dns_msg
{
uint id;
uint qr;
uint opcode;
uint aa;
uint tc;
uint rd;
uint ra;
uint rcode;
uint qdCount;
uint anCount;
uint nsCount;
uint arCount;
};
typedef ssize_t (*sendto_dns_hook_func)(void *sock, const struct sockaddr *from, const void *buffer, size_t length);
struct dns_request
{
/// sock type
void *user;
/// request id
int id;
std::string m_qName;
uint m_qType;
uint m_qClass;
struct sockaddr *from;
sendto_dns_hook_func hook; // sendto hook tbh
};
#endif