Commits
Commit:
7ab93e89b8beea6fa0aa3f6ead450b16b48a3688
Date:
Sat Dec 31 18:06:04 2022
UTC
bump version
Commit:
835578c577db3842fdb96369b3039c3822dfbc50
Date:
Sat Dec 31 18:04:56 2022
UTC
CHANGES for 0.5
Commit:
2c4afbcc5b2b7921292c426e9aa3452ba11455ca
Date:
Fri Dec 2 10:59:22 2022
UTC
look also for listen(2) failures
Commit:
e4189e65e31ef83e3854eb33867cc6853505542a
Date:
Fri Dec 2 10:58:06 2022
UTC
bind after setsockopt, otherwise it's pointless
Commit:
d2d812174872d70ade77fe282a8766b875f75cc4
Date:
Fri Dec 2 10:57:24 2022
UTC
don't listen everywhere by default; restrict to localhost
if -b was given without a explicit host, it defaulted to listen on any
address. it's not a good idea given this would allow anyone on the same
network to (ab)use the ssh forwarding.
Commit:
4164fc92a7b5022258d7ee83a1703da316db9a4e
Date:
Sat Jul 30 21:36:49 2022
UTC
bump version
Commit:
eeb0efa6142cd682c473d32de34a2a8e4169db43
Date:
Sat Jul 30 21:36:49 2022
UTC
CHANGES for 0.4
Commit:
7c95b42e64c76625513eb383aead5c423be4603b
Date:
Sat Jul 30 21:36:49 2022
UTC
include also other deps
Commit:
a41ba086314a97211e1856fc968a8d18b11df953
Date:
Sat Jul 30 21:26:20 2022
UTC
fix configure issues on !OpenBSD
* fix handling of HAVE_LIBEVENT2
* provide shims for pledge/unveil
Commit:
cfe57149140baac9bfd1f900a6e6e425e41b6900
Date:
Sat Jul 30 21:24:05 2022
UTC
implement socket splicing on OpenBSD
socket splicing allows to do zero-copy data transfers between sockets.
This adds a specific implementation for OpenBSD using the setsockopt
SO_SPLICE and a default implementation with libevent (that is the old
code doing the copy in userland.)
It's possible to do the same on linux with splice(2), not implementd
though.
Commit:
ecd6b12a1f94fa609c3f7484f12d4cc8bc5a46f1
Date:
Sat Jul 30 18:03:06 2022
UTC
forgot tests.c in SOURCES
Commit:
4f96af192af61ec25d699c2cb12be6601274a5f8
Date:
Sat Jul 30 17:48:44 2022
UTC
update outdated sentence
Commit:
55a27abf2860b278676d1e0b2b5d77851ac6e4b5
Date:
Sat Jul 30 17:47:32 2022
UTC
delete needless compat #ifdef
Commit:
9050e62864d044b4ed8dd17b06587d67cc6296f9
Date:
Sat Jul 30 17:47:32 2022
UTC
allow to customize the path to ssh(1) via configure script
Commit:
3a9f646cf520cb09e23e74cf150460e7c159cd0c
Date:
Sat Jul 30 17:47:25 2022
UTC
require PKG_CONFIG=false to disable, not the empty string
this way we can run the auto-configuration after the args handling and
provide a better output.
Omar Polo