]> git.sur5r.net Git - bacula/docs/commitdiff
Update new features
authorKern Sibbald <kern@sibbald.com>
Mon, 22 Sep 2008 16:46:15 +0000 (16:46 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 22 Sep 2008 16:46:15 +0000 (16:46 +0000)
docs/manuals/en/concepts/concepts.kilepr
docs/manuals/en/concepts/newfeatures.tex

index 9c3db920bcb104d79c313fc9d9af4a4e1604840e..b2e64431871cf1695afc2c824707013712689f44 100644 (file)
@@ -161,7 +161,7 @@ order=-1
 
 [item:newfeatures.tex]
 archive=true
-column=30
+column=25
 encoding=UTF-8
 highlight=LaTeX
 line=972
index b2c4e418ee2829cc2f0467fb0d5f1884cc3cc650..3a19ebe82bd32c9b281c4de239b29964a4e79e25 100644 (file)
@@ -968,10 +968,14 @@ entry in the Bacula catalog database. The full path and filename should be
 unique on the system to avoid conflicts with real files. Example programs such
 as {\bf bpipe.c} show how to set these fields.
 
+Once the backup has begun, Bacula will call your plugin at the {\bf pluginIO}
+entry point to "read" the data to be backed up.  Please see the {\bf bpipe.c}
+plugin for how to do I/O.
+
 \subsection{endBackupFile(bpContext *ctx)}
 Called at the end of backing up a file.  If the plugin's work
 is done, it should return bRC\_OK.  If the plugin wishes to create another
-file and back it up, then it must return bRC\_More.
+file and back it up, then it must return bRC\_More (not yet implemented).
 
 \subsection{startRestoreFile(bpContext *ctx, const char *cmd)}
 Not implemented.
@@ -1004,7 +1008,6 @@ struct io_pkt {
    int32_t whence;
    boffset_t offset;
 };
-
 \end{verbatim}