diff options
author | Julien Dessaux | 2020-01-29 14:27:03 +0100 |
---|---|---|
committer | Julien Dessaux | 2020-01-29 14:27:03 +0100 |
commit | e07ce016c494317d980d0575c2e32c694e807397 (patch) | |
tree | 1fb67673ff1696be5e83081af1d18c86dd12dca4 /state | |
parent | Added gitignore (diff) | |
download | bareos-zabbix-check-e07ce016c494317d980d0575c2e32c694e807397.tar.gz bareos-zabbix-check-e07ce016c494317d980d0575c2e32c694e807397.tar.bz2 bareos-zabbix-check-e07ce016c494317d980d0575c2e32c694e807397.zip |
Document where C structures for state file header and job entry come from
Diffstat (limited to '')
-rw-r--r-- | state.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -11,6 +11,7 @@ import ( ) // stateFileHeader : A structure to hold the header of the state file. It is statically aligned for amd64 architecture +// This comes from bareos repository file core/src/lib/bsys.cc:525 and core/src/lib/bsys.cc:652 type stateFileHeader struct { ID [14]byte _ int16 @@ -26,6 +27,7 @@ func (sfh stateFileHeader) String() string { } // jobEntry : A structure to hold a job result from the state file +// This comes from bareos repository file core/src/lib/recent_job_results_list.h:29 and file core/src/lib/recent_job_results_list.cc:44 type jobEntry struct { Pad [16]byte Errors int32 |