Welcome to mirror list, hosted at ThFree Co, Russian Federation.

allocator_thread.h « src - github.com/rofl0r/proxychains-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 734ed898a7105a0717a79e830a8640d63b058f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef ALLOCATOR_THREAD_H
#define ALLOCATOR_THREAD_H

#include <unistd.h>
#include "ip_type.h"

#define MSG_LEN_MAX 256

extern int req_pipefd[2];
extern int resp_pipefd[2];

void at_init(void);
void at_close(void);
size_t at_get_host_for_ip(ip_type4 ip, char* readbuf);
ip_type4 at_get_ip_for_host(char* host, size_t len);

//RcB: DEP "allocator_thread.c"
#endif