1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/dnsd.hpp

26 lines
565 B
C++
Raw Normal View History

2018-07-16 14:48:04 +02:00
#ifndef LIBLLARP_DNSD_HPP
#define LIBLLARP_DNSD_HPP
#include "dnsc.hpp"
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
};
2018-07-21 15:19:06 +02:00
dns_msg_header *decode_hdr(const char *buffer);
dns_msg_question *decode_question(const char *buffer);
dns_msg_answer *decode_answer(const char *buffer);
2018-07-16 14:48:04 +02:00
#endif