rofl0r
rofl0r
well, then i guess its time for someone who cares to launch gdb and debug the issue. dont wait for me, the support for mac os x is only a...
> After discussing with Apple's engineer, it seems that cargo, git or perl called exec() on itself, which causes that message to be printed more than once. > So pthread_once...
i pushed some changes which might fix this issue (at least the originally reported), please test current git if possible.
haha, you cannot simply delete the line and expect it to make the code magically work :) i think i fixed the isse with d28f4df , thanks for your patience.
oh sorry, i misread which lines you deleted. the ones you deleted are actually safe to delete.
wrong. as the README states, proxychains is a hack and may or may not work **depending on the proxified application**. so as it looks right now, it doesnt work with...
> I would like to only enable proxychains for an ip ranges, is it possible? currently, it works the other way round: you can specify a range that's excluded from...
you could make a portredir tunnel listening on localhost to the domain name, then use localnet for 127.0.0.1.
can you add some debug code to pc_getnameinfo to see which branches are taken etc ?
``` c if(!proxychains_resolver) { return true_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags); } else { if(salen < sizeof(struct sockaddr_in) || SOCKFAMILY(*sa) != AF_INET) return EAI_FAMILY; if(hostlen) { pc_stringfromipv4((unsigned char*) &(SOCKADDR_2(*sa)),...