summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-23Fix GUI loopersJoel Klinghed
GTK: If modify() was called more than once inside callback it would leak watches QT: Printed warnings as QSocketNotifier was still enabled when socket was closed
2017-07-22Add application config for GUIJoel Klinghed
QT5 stored in .config/org.the_jk/tp.Monitor.conf on Linux GTK stored in dconf
2017-07-22fixup! Initial monitor GUIJoel Klinghed
Missing static initializer
2017-07-22Initial monitor GUIJoel Klinghed
Basic monitor functionality, GTK-3.0 and QT5 backends
2017-07-22Fix warnings for GCC as wellJoel Klinghed
GCC ignores __attribute__((unused)) when compiling C++ code. (Yes, this is true) GCC -Wmaybe-uninitialized just gives false positives in my experience, so drop it. However, this exposed a problem with AX_APPEND_COMPILE_FLAGS and clang. clang gives a warning, but not an error, when given a -Wno-UNKNOWN-FLAG. So add -Werror as an extra flag to make clang fail on unknown -Wno-UNKNOWN-FLAG
2017-07-22Restore -Wunused-parameter warningJoel Klinghed
2017-07-22fixup! Add Observers, useful class for notifying listenersJoel Klinghed
Add missing git ignore
2017-06-13Fix uninitialized field in MonitorJoel Klinghed
2017-05-28Add Observers, useful class for notifying listenersJoel Klinghed
2017-05-26Workaround bad implementations of std::unique_ptr in std::pairJoel Klinghed
2017-05-26fixup! Support openssl 1.1.0+Joel Klinghed
Fix compilation error
2017-05-26Support openssl 1.1.0+Joel Klinghed
2017-04-25Make a non-existent config file an errorJoel Klinghed
2017-04-25Fix tp-monitor argument parsingJoel Klinghed
2017-04-25Make SSL interception behave as per config documentationJoel Klinghed
2017-04-25Add documentation for config formatJoel Klinghed
2017-04-06Add fallback SSL implementation using OpenSSLJoel Klinghed
2017-04-06fixup! Add certificate support for subject alt name for mbedtlsJoel Klinghed
2017-03-30Add certificate support for subject alt name for mbedtlsJoel Klinghed
2017-03-30Generate a unique serial for each certJoel Klinghed
2017-03-28Support compiling without SSLJoel Klinghed
And prepare for other SSL implementations than mbedtls
2017-03-28MITM SSL Interception support using mbedtlsJoel Klinghed
2017-03-16Add basic console monitor and implement monitor supportJoel Klinghed
2017-03-01Add support for CONNECTJoel Klinghed
2017-02-28Check for accept4() and provide alternativeJoel Klinghed
2017-02-28Workaround warning in GCCJoel Klinghed
2017-02-28Add missing includesJoel Klinghed
2017-02-28Initial commitJoel Klinghed