Dustin Lundquist

Results 59 comments of Dustin Lundquist

Can you verify the sniproxy process is indeed not running, and this isn't an init system issue? Anything in the logs? Also, could you run sniproxy under strace so we...

I've built it on OpenBSD 6.1, the debconf error message is benign. I've pushed my local changes to build under OpenBSD to https://github.com/dlundquist/sniproxy/compare/openbsd. ``` $ AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.15 ./autogen.sh ./setver.sh[35]: debchange:...

Yikes! It should load the config and patch the current state with the new config. Could I trouble you to rebuild with debugging symbols (`CFLAGS=-g ./configure && make`), enable core...

Hmm, sounds like a permissions issue. Could you either try to obtain backtrace running as `user daemon` by tweaking /proc/sys/kernel/core_pattern to a location writable by daemon e.g. /tmp or provide...

`Only socket address backends are permitted when compiled without libudns` It looks like you don't have libudns-dev installed on your system so DNS related features are disabled and the tests...

This sounds like two seperate issues: 1. You are unable to connect to port 80 on mydomain.com, this may be a firewall rule or mismatch between the IP address in...

Table entries are evaluated in order, your regular expression are not anchored, so `github\.com` matches all the others. To match an exact website, you should anchor each end and double...

@PantherJohn I don't understand what you are saying? `*.github.com` is not a formal regular expression since it begins with a Kleene star operator, I would refer to it as a...

@deekshithd if you just want to log the local socket address of the incoming client connection, you need to add a `getsockname() ` call to `accept_connection()` and persist it in...