mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-11 17:29:16 +05:00
23 lines
539 B
C
23 lines
539 B
C
|
#pragma once
|
||
|
|
||
|
#include <inttypes.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <sys/queue.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <netdb.h>
|
||
|
|
||
|
struct resolve_item
|
||
|
{
|
||
|
char dom[256]; // request dom
|
||
|
struct sockaddr_storage ss; // resolve result
|
||
|
int ga_res; // getaddrinfo result code
|
||
|
uint16_t port; // request port
|
||
|
void *ptr;
|
||
|
TAILQ_ENTRY(resolve_item) next;
|
||
|
};
|
||
|
|
||
|
struct resolve_item *resolver_queue(const char *dom, uint16_t port, void *ptr);
|
||
|
void resolver_deinit(void);
|
||
|
bool resolver_init(int threads, int fd_signal_pipe);
|
||
|
int resolver_thread_count(void);
|