summaryrefslogtreecommitdiff
path: root/src/main.cc
AgeCommit message (Collapse)Author
2017-08-10Resolver didn't work when it was created before fork() and used afterJoel Klinghed
The pipe that resolver sets up to communicate with the threads gets duplicated by the fork() leading to it all breaking down. So make it possible to create a Resolver without actually initializing it so we can do that *after* fork() (fork is called bu daemon())
2017-07-29Remove attribute(__unused__) usageJoel Klinghed
Just omitting the parameter name is more portable and less to write
2017-07-23Add proxy to GUIJoel Klinghed
Access via "Setup..." in main menu Uses a socketpair to connect monitor so only proxy port is open
2017-02-28Initial commitJoel Klinghed