gitextract_lvzudl7q/ ├── .gitignore ├── AUTHORS ├── COPYING ├── Makefile ├── README ├── TODO ├── VERSION ├── completions/ │ └── zsh/ │ └── _proxychains4 ├── configure ├── src/ │ ├── allocator_thread.c │ ├── allocator_thread.h │ ├── common.c │ ├── common.h │ ├── core.c │ ├── core.h │ ├── daemon/ │ │ ├── daemon.c │ │ ├── hsearch.c │ │ ├── hsearch.h │ │ ├── sblist.c │ │ ├── sblist.h │ │ ├── sblist_delete.c │ │ ├── udpclient.c │ │ ├── udpserver.c │ │ └── udpserver.h │ ├── debug.c │ ├── debug.h │ ├── hash.c │ ├── hash.h │ ├── hostsreader.c │ ├── ip_type.h │ ├── libproxychains.c │ ├── main.c │ ├── mutex.h │ ├── proxychains.conf │ ├── proxyresolv │ ├── rdns.c │ ├── rdns.h │ ├── remotedns.h │ └── version.c ├── tests/ │ ├── test_getaddrinfo.c │ ├── test_gethostbyname.c │ ├── test_gethostent.c │ ├── test_gethostent_r.c │ ├── test_getnameinfo.c │ ├── test_proxy_gethostbyname.c │ ├── test_sendto.c │ ├── test_shm.c │ └── test_v4_in_v6.c └── tools/ ├── install.sh └── version.sh