64
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
Mar 26, 2023 — Mar 26, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Include a debug handler for libmonit More... 3 months ago
Accidentally include binary test More... 3 months ago
Change System_getDescriptorsGuarded to make the guard value a parameter More... 3 months ago
Format fix More... 3 months ago
Fix OpenSSL version >= 3 deprecation warnings More... 3 months ago
Fix OpenSSL version >= 3 deprecation warnings More... 3 months ago
Add piddir config option for cross-compiling More... 3 months ago
Renamed Convert to Fmt More... 3 months ago
Renamed Convert.c to Fmt.c More... 3 months ago
Clarify comment More... 3 months ago
Remove test code meant for File_fopen which has been removed More... 3 months ago
Renamed ConvertTest to FmtTest More... 3 months ago
Spellcheck More... 3 months ago
ConvertTest renamed to FmtTest More... 3 months ago
Cleanup More... 3 months ago
Revert and remove File_fopen More... 3 months ago
Remove unused function More... 3 months ago
Rename Convert to Fmt More... 3 months ago
Fix comment More... 3 months ago
Remove Str_escapeZero test as it is moved to generic. Also update with rename of Str_compareConstantTime to Str_authcmp More... 3 months ago
Str_compareConstantTime renamed to Str_authcmp and call-site change More... 3 months ago
Move Str_escapeZero from libmonit here and rename to _escapeZero More... 3 months ago
Simplify and secure Str_compareConstantTime and rename to Str_authcmp. Move Str_escapeZero to the one place it is used in Monit More... 3 months ago
Introduced a new method in File.h: File_fopen which returns a FILE object. This is a simple wrapper for fopen, but does one crucial thing, it sets the O_CLOEXEC flag on the file descriptor. Monit creates sub-processes today using fork/exec and close descriptors in the child, but as we move to posix_spawn, this functionality is not available. Instead we need to set the O_CLOEXEC flag on all files, sockets (FD_CLOEXEC) etc that we open to ensure they are closed in a child process when exec is called. I.e. in Monit we need to go through all calls to fopen and relplace them with File_fopen. More... 3 months ago
Remove the option to set and get working dir in child. This functionality is not supported by posix_spawn. More... 4 months ago
fix Issue #1096 (missing colon in header). Thanks to Lutz Mader for report More... 5 months ago
disable broken test More... 5 months ago
use fork() instead of vfork() More... 5 months ago
fix responsetime option documentation More... 5 months ago
Fixed: When the monit ID is generated in first start and the system is shut down before the file was stored to the filesystem, an empty monitid file may be created. Thanks to Alexander Dahl for fix. More... 6 months ago