rofl0r

Results 904 comments of rofl0r

can you paste a diff your work ? so i (and everyone else reading this) dont have to download, extract, diff themselves. (just run git diff in your clone and...

```diff diff --git a/server.c b/server.c index 9f0ab9a..1730db9 100644 --- a/server.c +++ b/server.c @@ -3,9 +3,9 @@ #include #include -int resolve(const char *host, unsigned short port, struct addrinfo** addr) { +int...

almost, you can for example bind to 0.0.0.0, but listen on a particular interface, or (see description of https://github.com/rofl0r/microsocks/pull/5 )

reverse proxy is a feature used by http proxies, not socks ones. or maybe i misunderstand what you want. microsocks does not implement ACLs, so if you need to restrict...

> Unfortunately tinyproxy is http and i need a socks proxy for a filebeat connection to a logstash. you can configure tinyproxy to use a socks upstream so tinyproxy can...

> And no reverse proxies for socks isn't that basically just like running "portredir" forwarding a port to another box that has the socks server software running?

try this: compile it on linux, look which C files get compiled, then instruct to compile these files and link em together. if you take the release tarball, you can...

i don't use windows, but maybe someone watching this repo can provide an exe ? but i dont think it is very complicated, you basically just need to run mingw32-make...

mingw (at least the official one from mingw.org) ships some sort of package manager where you can select pthread and get it installed. it will create a file `libwinpthread-1.dll`. i...

maybe there needs to be yet another package selected ? can "select.h" be located in mingw's directory tree ? if so, adding the right base path a la `CPPFLAGS=-I/path/to/headers make`...