summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* When dumping stack traces, allow libc to allocate its own memory, ratherChris Wilson2008-08-06
| | | | | | than trying to manage a buffer ourselves, and free it with std::free without memory leak tracing.
* Fix conflict with local variables called "line".Chris Wilson2008-08-06
|
* Formatting fix.Chris Wilson2008-08-06
|
* Allow passing C strings into TEST_FAIL_WITH_MESSAGE, not just string constants.Chris Wilson2008-08-06
|
* Log a warning with the file that couldn't be opened and the error code,Chris Wilson2008-08-06
| | | | | to help debus issues Pete Jalajas is having with Amazon S3 and fuse.
* Windows compile and deletion/housekeeping test fix.Chris Wilson2008-08-03
|
* Name the timers to help with debugging.Chris Wilson2008-08-03
|
* Log file uploads at NOTIFY level so that all you need to do to get themChris Wilson2008-08-03
| | | | | (and just them) logged is to set LogAllFileAccess = yes.
* Log the error code returned by NotifyScript.Chris Wilson2008-08-03
|
* Really enable PID logging on Windows.Chris Wilson2008-08-03
|
* Enable logging of PID on Windows.Chris Wilson2008-08-03
| | | | | Enable both -k and -K options on all platforms.
* Log error when rename over RaidFile fails on Windows.Chris Wilson2008-08-03
|
* Kill running daemons using kill -f on Windows (cygwin) which killsChris Wilson2008-08-03
| | | | | by Windows PID.
* Remove Windows limitation on Logging that showing PID was not possible.Chris Wilson2008-08-03
|
* Add getpid() emulation.Chris Wilson2008-08-03
|
* New timer implementation using TimerQueue on Windows to avoid the needChris Wilson2008-07-27
| | | | | to create and manage a separate thread ourselves.
* On Windows XP, you can open a process even after it's terminated, toChris Wilson2008-07-27
| | | | | | retrieve the exit code, so the check for process liveness has to be modified to make the basicserver test pass.
* Use the new time function when generating console log messages.Chris Wilson2008-07-27
|
* Add a function to format a BoxTime as a human-readable time onlyChris Wilson2008-07-27
| | | | | (for use in logging).
* Add spaces before Make progress output lines to visually separateChris Wilson2008-07-26
| | | | | them better from error messages.
* Remove -rdynamic flag from mingw gcc which doesn't support it.Chris Wilson2008-07-26
|
* Fix includes to get getpid() on Solaris and to make them easier to read.Chris Wilson2008-07-06
|
* Remove comma from last item in enum, to silence warnings from solaris cc.Chris Wilson2008-07-06
|
* Don't warn about ignoring sockets and FIFOs during backup, thanks toChris Wilson2008-07-03
| | | | | Tollef Fog Heen (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=479145)
* Add missing #include, thanks to Alex Howansky.Chris Wilson2008-07-02
| | | | | | Reset notification state for backup-error after a successful backup, thanks to Wolfgang Trexler.
* Compile fix for strerror() on RedHat 9, thanks to Alex Howansky.Chris Wilson2008-06-30
|
* Mac OS X launchd files for bbackupd and bbstored.Per Reedtz Thomsen2008-06-27
|
* Larger buffer size for extended attributes, and better debugging.Chris Wilson2008-06-19
|
* Correct locations for PID files in SuSE initscriptChris Wilson2008-06-15
|
* Refactor and fix Debian init scripts.Chris Wilson2008-06-15
|
* Fix default locations of PID files.Chris Wilson2008-06-15
| | | | | Wait for daemons to stop before starting them again during restart.
* Fix strerror include. Needed for gcc 4.3Martin Ebourne2008-05-29
|
* Fix paths to bbreporter filesMartin Ebourne2008-05-29
|
* Fix compile error on Windows.Chris Wilson2008-05-28
|
* Fix possible memory corruption while dumping stack trace due to Chris Wilson2008-05-28
| | | | | mismatching new []/delete.
* Check that Box.h has been included early enough.Chris Wilson2008-05-28
|
* Include "Box.h" in the right place.Chris Wilson2008-05-28
|
* Add bbackupquery -W<level> option to set explicit warning level, Chris Wilson2008-05-28
| | | | | | | | | | | | | | | | | | | Obsolete old (inconsistent) meaning of -q in bbackupquery. Replace -q with -Wwarning or -Werror in tests to reduce noise and fix tests. Test that reading a nonexistent directory on the server doesn't crash server or client. Test that bbackupd does continue backup run and delete files when storage limit is exceeded. Use logging guards to hide expected warnings in testbbackupd. Remove apparently pointless listing files on server at the end of testbbackupd.
* Add stat() intercept and stat() and lstat() post call hooks.Chris Wilson2008-05-28
|
* Use symbolic names instead of #defines for return codes.Chris Wilson2008-05-28
|
* Track and log file deletions by name.Chris Wilson2008-05-28
| | | | | | | | | | | | Split crypto init and file sync process into its own method, to reduce call depth and facilitate calling in process from tests. Differentiate between 3 uses of stat in BackupClientDirectoryRecord by renaming the structures. Use stat instead of lstat when checking the filesystem that's holding an entity, in case it's a symbolic link to a different filesystem.
* Shorten names used by daemons.Chris Wilson2008-05-28
|
* Catch exception on reading a directory that doesn't exist, and return a Chris Wilson2008-05-28
| | | | | protocol error message instead.
* Demangle C++ names in backtrace on GCC using C++ ABI routines.Chris Wilson2008-05-28
|
* Move loading configuration into a separate method.Chris Wilson2008-05-28
| | | | | Add -W<level> option to set warning level explicitly.
* Reformat for readability.Chris Wilson2008-05-28
| | | | | Log removal of directories by housekeeping.
* Add static Logging::GetNamedLevel() method to return a log level Chris Wilson2008-05-28
| | | | | specified by name as a string.
* Separate checks for file existing and file not empty.Chris Wilson2008-05-28
|
* Reformat for readability.Chris Wilson2008-05-28
|
* Add a GetMessage() method to Protocol objects to return a stringified Chris Wilson2008-05-28
| | | | | | | message as a string. Fix a typo in a comment.