Welcome
libfilezilla is a small and modern 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 fz::socket class for TCP communication with infrastructure to easily add layers on top
- A TLS layer to secure communication
- A rate-limited socket layer to control traffic flow
- 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
libfilezilla is a cross-platform library for all major operating systems, including but not limited to Linux, *BSD, OS X and Windows.
This library is free software, it is distributed under the terms and conditions of the GNU General Public License v2+
News
2023-06-28 - libfilezilla 0.44.0 released
New features:
- Exportable hash accumulator state
- Add for RSA key support for JWS
- JWT creation
- Conversion functions from X.509 private keys to JWK
Bugfixes and minor changes:
- Added logging when certificate is untrusted by system trust store
2023-05-26 - libfilezilla 0.43.0 released
New features:
- Added fz::tls_layer::generate_cert_from_csr
Bugfixes and minor changes:
- fz::event_loop performance improvements when timers are in use
2023-04-25 - libfilezilla 0.42.2 released
Bugfixes and minor changes:
- Further HTTP client fixes