summaryrefslogtreecommitdiffstats
path: root/src/guestfs-internal.h
Commit message (Collapse)AuthorAgeFilesLines
* Make print_timestamped_message into a cross-module function.Richard Jones2010-08-261-0/+1
| | | | | This is just code movement. (cherry picked from commit 4b753c62089be663ac722e4a875bb061d259e87d)
* Factor out code for locating the temporary directory.Richard Jones2010-08-261-0/+1
| | | | | | | | This is just code movement. For stable-1.4 branch, cherry picked from commit a2d4a8bf073c3551d174bd6c406e0cf3d27fb560 and backported.
* Whitespace change: Add blank line between structures and functions.Richard Jones2010-08-261-0/+1
| | | | (cherry picked from commit 4d2f1632ad655130fafab3bf7fe8fa5cb59705d8)
* Add safe_strndup call.Richard Jones2010-08-261-0/+2
| | | | (cherry picked from commit 3905cc7ab496549b6ca0a0f67ec61d1d16968c33)
* Rename internal functions.Richard Jones2010-08-171-3/+3
| | | | | | | | This is an update to commit 41f25ab3df5f306ac717fa7a6efd58328d30c1ae. Internal functions should be named guestfs___* (3 underscores) to avoid clashing with the implementation of actions (2 underscores). (cherry picked from commit 737181bcd7b1de8c3a613d6282030c34efa78fb6)
* Rearrange library code into separate files.Richard Jones2010-08-171-1/+115
| | | | | | | | | | | | | | | We split the library code into these separate files: - guestfs.c: creating handles, closing handles, handle-related variables - actions.c: generated library-side stubs for each action - bindtests.c: generated code to test bindings - launch.c: launching the appliance - proto.c: the library side of the daemon communications protocol This is just code movement. Cherry picked from commit 41f25ab3df5f306ac717fa7a6efd58328d30c1ae and rebased for stable branch.
* guestfs.h: Move some internal functions to the internal header.Richard Jones2010-03-161-0/+16
| | | | | | Functions like guestfs__send were never exported through the public API (libguestfs.syms prevented that). However they appeared in the public header. Move them to the internal header.
* Don't export STREQ and friends in <guestfs.h>Richard Jones2009-11-101-0/+32
Move these to private header file(s) and other places as required since these aren't part of the public API.