summary refs log tree commit diff
ModeNameSize
-rw-r--r--LIBTLS_VERSION7log plain blame
-rw-r--r--Makefile.am1145log plain blame
-rw-r--r--Makefile.am.common162log plain blame
-rw-r--r--VERSION7log plain blame
d---------compat1648log plain
-rw-r--r--configure.ac5283log plain blame
-rw-r--r--import.sh2155log plain blame
d---------include105log plain
-rw-r--r--libtls.pc.in379log plain blame
d---------m4198log plain
d---------man605log plain
-rw-r--r--tls.c16948log plain blame
-rw-r--r--tls.sym2048log plain blame
-rw-r--r--tls_bio_cb.c3566log plain blame
-rw-r--r--tls_client.c10480log plain blame
-rw-r--r--tls_config.c20542log plain blame
-rw-r--r--tls_conninfo.c8459log plain blame
-rw-r--r--tls_internal.h8428log plain blame
-rw-r--r--tls_keypair.c4172log plain blame
-rw-r--r--tls_ocsp.c11128log plain blame
-rw-r--r--tls_peer.c2316log plain blame
-rw-r--r--tls_server.c10904log plain blame
-rw-r--r--tls_util.c4620log plain blame
-rw-r--r--tls_verify.c6756log plain blame
line editing testsJune McEnroe I know, it feels wrong. 2022-02-18Implement new line editing "library"June McEnroe Losing tab complete and text macros, for now. This new implementation works on an instance of a struct and does not interact with the rest of catgirl, making it possible to copy into another project. Unlike existing line editing libraries, this one is entirely abstract and can be rendered externally. My goal with this library is to be able to implement vi mode. Since it operates on struct instances rather than globals, it might also be possible to give catgirl separate line editing buffers for each window, which would be a nice UX improvement. 2022-02-18Simplify cursor positioning in inputJune McEnroe Do some extra work by adding the portion before the cursor to the input window twice, but simplify the interaction with the split point. This fixes the awkward behaviour when moving the cursor across colour codes where the code would be partially interpreted up to the cursor. 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe