64
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 20 hours ago. based on code collected 1 day ago.
Apr 22, 2023 — Apr 22, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Modify test to include changes in System_getDescriptorsGuarded semantics More... 4 months ago
Include a debug handler for libmonit More... 4 months ago
Accidentally include binary test More... 4 months ago
Change System_getDescriptorsGuarded to make the guard value a parameter More... 4 months ago
Format fix More... 4 months ago
Fix OpenSSL version >= 3 deprecation warnings More... 4 months ago
Fix OpenSSL version >= 3 deprecation warnings More... 4 months ago
Add piddir config option for cross-compiling More... 4 months ago
Renamed Convert to Fmt More... 4 months ago
Renamed Convert.c to Fmt.c More... 4 months ago
Clarify comment More... 4 months ago
Remove test code meant for File_fopen which has been removed More... 4 months ago
Renamed ConvertTest to FmtTest More... 4 months ago
Spellcheck More... 4 months ago
ConvertTest renamed to FmtTest More... 4 months ago
Cleanup More... 4 months ago
Revert and remove File_fopen More... 4 months ago
Remove unused function More... 4 months ago
Rename Convert to Fmt More... 4 months ago
Fix comment More... 4 months ago
Remove Str_escapeZero test as it is moved to generic. Also update with rename of Str_compareConstantTime to Str_authcmp More... 4 months ago
Str_compareConstantTime renamed to Str_authcmp and call-site change More... 4 months ago
Move Str_escapeZero from libmonit here and rename to _escapeZero More... 4 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... 4 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... 4 months ago
Remove the option to set and get working dir in child. This functionality is not supported by posix_spawn. More... 5 months ago
fix Issue #1096 (missing colon in header). Thanks to Lutz Mader for report More... 5 months ago
disable broken test More... 6 months ago
use fork() instead of vfork() More... 6 months ago
fix responsetime option documentation More... 6 months ago