Path to this page:
./
net/libfilezilla,
Library for building high-performing, platform-independent programs
Branch: CURRENT,
Version: 0.47.0nb4,
Package name: libfilezilla-0.47.0nb4,
Maintainer: pkgsrc-userslibfilezilla is a free, open source C++ library, offering some basic
functionality to build high-performing, platform-independent programs.
Some of the highlights include:
* A typesafe, multi-threaded event system that's very simple to use
yet extremely efficient
* Timers for periodic events
* A datetime class that not only tracks timestamp but also their
accuracy, which simplifies dealing with timestamps originating from
different sources
* Simple process handling for spawning child processes with redirected
I/O
Required to run:[
security/gnutls] [
security/nettle]
Required to build:[
pkgtools/cwrappers] [
lang/gcc7]
Master sites:
Filesize: 538.559 KB
Version history: (Expand)
- (2024-11-01) Updated to version: libfilezilla-0.47.0nb4
- (2024-11-01) Updated to version: libfilezilla-0.47.0nb3
- (2024-05-29) Updated to version: libfilezilla-0.47.0nb2
- (2024-05-16) Updated to version: libfilezilla-0.47.0nb1
- (2024-04-16) Updated to version: libfilezilla-0.47.0
- (2024-02-14) Updated to version: libfilezilla-0.46.0
CVS history: (Expand)
2024-04-16 00:07:06 by Thomas Klausner | Files touched by this commit (3) | |
Log message:
libfilezilla: update to 0.47.0.
New features:
PKCS#11 support, provided GnuTLS has been compiled with PKCS#11 support enabled
Bugfixes and minor changes:
Added parameter to fz::remove_dir that allows returning an error if the \
directory did not exist
Add logging of aio reader/writers cannot be opened, fix return value of \
reader when trying to read nothing
HTTP: Delay sending subsequent requests after having received a response \
with "Connection: close" set
Listen sockets are now created with the SO_REUSEADDR (SO_EXCLUSIVEADDRUSE on \
Windows) flag set
Added cert_type::codesign as key purpose to certificate request and creation \
functions in fz::tls_layer
|
2024-02-14 09:06:03 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
libfilezilla: update to 0.46.0.
0.46.0 (2024-02-06)
+ fz::process: Add io redirection mode that excluded stderr
+ fz::remove_file and remove_dir now take additional parameter and return fz::result
+ Added transitional fz::file::read2 and fz::file::write2 returning \
fz::rwresult, old read/write have been marked deprecated
- HTTP: Fix redirect if "Connection: close" header is set
|
2023-11-23 12:15:13 by Thomas Klausner | Files touched by this commit (1) |
Log message:
libfilezilla: try requiring gcc 8
to fix
nvoker.cpp: In function 'fz::invoker_factory \
fz::get_invoker_factory(fz::event_loop&)':
invoker.cpp:28:54: error: 'loop' was not declared in this scope
return [handler = std::optional<thread_invoker>(), \
&loop](std::function<void()> const& cb) mutable {
^~~~
invoker.cpp: In lambda function:
invoker.cpp:30:20: error: 'loop' is not captured
handler.emplace(loop);
^~~~
invoker.cpp:28:58: note: the lambda has no capture-default
return [handler = std::optional<thread_invoker>(), \
&loop](std::function<void()> const& cb) mutable {
^
invoker.cpp:28:54: note: '<typeprefixerror>loop' declared here
return [handler = std::optional<thread_invoker>(), \
&loop](std::function<void()> const& cb) mutable {
^~~~
seen with gcc 7 on NetBSD 9.
|
2023-11-08 14:21:43 by Thomas Klausner | Files touched by this commit (2377) |
Log message:
*: recursive bump for icu 74.1
|
2023-11-07 22:41:20 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
libfilezilla: update to 0.45.0.
0.45.0 (2023-10-11)
+ fz::hash_accumulator now also works with hmac_sha256
+ Added is_digest and digest_size to fz::hash_acumulator
+ MSW: Added function to delete registry values
- Fixed a crash and a stall in the HTTP client
|
2023-10-25 00:11:51 by Thomas Klausner | Files touched by this commit (2298) |
Log message:
*: bump for openssl 3
|
2023-07-19 15:16:07 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
libfilezilla: update to 0.44.0.
0.44.0 (2023-06-28)
+ Exportable hash accumulator state
+ Add for RSA key support for JWS
+ JWT creation
+ Conversion functions from X.509 private keys to JWK
- Added logging when certificate is untrusted by system trust store
0.43.0 (2023-05-26)
+ Added fz::tls_layer::generate_cert_from_csr
- fz::event_loop performance improvements when timers are in use
|
2023-04-30 06:43:39 by Thomas Klausner | Files touched by this commit (3) | |
Log message:
libfilezilla: update to 0.42.2.
0.42.2 (2023-04-25)
- Further HTTP client fixes
0.42.1 (2023-04-21)
- Small HTTP client improvements to force IPv4/IPv6 for new connections, add a \
header count limit, and to make abuffer pool optional
0.42.0 (2023-04-12)
+ Added an HTTP client
- Sources are now distributed in a .tar.xz
- buffer_writer now clears the buffer when opened
- Fixes and performance improvements for fz::xml::parser
- *nix: fz::file::size() now returns -1 on character devices
|