From eb3f00a69909691bd2f0c7d5152200f28edfb6b3 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Thu, 23 Aug 2018 10:48:37 +0200 Subject: [PATCH] docs: api_extension: Update paths in the examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- docs/api_extension.html.in | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/api_extension.html.in b/docs/api_extension.html.in index 33d82e6ac6..d7fbbd6e90 100644 --- a/docs/api_extension.html.in +++ b/docs/api_extension.html.in @@ -96,7 +96,7 @@ schema and document the new elements or attributes:

- docs/schemas/domain.rng
+ docs/schemas/domaincommon.rng
docs/formatdomain.html.in

@@ -106,7 +106,7 @@ libvirt library and call the new function:

- include/libvirt/libvirt.h.in + include/libvirt/libvirt-$MODULE.h.in src/libvirt_public.syms

@@ -137,7 +137,7 @@

The driver structs are defined in:

-

src/driver.h

+

src/driver-$MODULE.h

To define the internal API, first typedef the driver function @@ -177,7 +177,7 @@

The public API calls are implemented in:

-

src/libvirt.c

+

src/libvirt-$MODULE.c

Implementing the remote protocol

@@ -219,9 +219,9 @@

- daemon/remote_dispatch_args.h - daemon/remote_dispatch_prototypes.h - daemon/remote_dispatch_table.h + src/remote/remote_daemon_dispatch_stubs.h + src/remote/remote_daemon_dispatch.h + src/remote/remote_daemon_dispatch.c src/remote/remote_protocol.c src/remote/remote_protocol.h

@@ -233,7 +233,7 @@ method calls go in:

-

src/remote/remote_internal.c

+

src/remote/remote_driver.c

Each remote method invocation does the following:

@@ -256,7 +256,7 @@ The server side dispatchers are implemented in:

-

daemon/remote.c

+

src/remote/daemon_dispatch.c

Again, this step uses the .h files generated by make rpcgen.

@@ -309,7 +309,7 @@

- tools/virsh.c
+ tools/virsh-$MODULE.c
tools/virsh.pod

-- GitLab