Allow remote://hostname/ style URIs for automatic driver probe. Fix virGetVersion impl

This commit is contained in:
Daniel P. Berrange
2008-11-28 12:03:20 +00:00
parent 319b83fc28
commit d88d459d7b
14 changed files with 122 additions and 45 deletions
+9 -1
View File
@@ -221,13 +221,21 @@ here</a>.
</h3>
<p>
Remote URIs are formed by taking ordinary local URIs and adding a
hostname and/or transport name. For example:
hostname and/or transport name. As a special case, using a URI
scheme of 'remote', will tell the remote libvirtd server to probe
for the optimal hypervisor driver. This is equivalent to passing
a NULL URI for a local connection. For example:
</p>
<table class="top_table"><tr><th> Local URI </th><th> Remote URI </th><th> Meaning </th></tr><tr><td>
<code>xen:///</code>
</td><td>
<code>xen://oirase/</code>
</td><td> Connect to the Xen hypervisor running on host <code>oirase</code>
using TLS. </td></tr><tr><td>
<code>NULL</code>
</td><td>
<code>remote://oirase/</code>
</td><td> Connect to the "default" hypervisor running on host <code>oirase</code>
using TLS. </td></tr><tr><td>
<code>xen:///</code>
</td><td>
+14 -1
View File
@@ -124,7 +124,10 @@ here</a>.
</h3>
<p>
Remote URIs are formed by taking ordinary local URIs and adding a
hostname and/or transport name. For example:
hostname and/or transport name. As a special case, using a URI
scheme of 'remote', will tell the remote libvirtd server to probe
for the optimal hypervisor driver. This is equivalent to passing
a NULL URI for a local connection. For example:
</p>
<table class="top_table">
<tr>
@@ -140,6 +143,16 @@ hostname and/or transport name. For example:
<code>xen://oirase/</code>
</td>
<td> Connect to the Xen hypervisor running on host <code>oirase</code>
using TLS. </td>
</tr>
<tr>
<td>
<code>NULL</code>
</td>
<td>
<code>remote://oirase/</code>
</td>
<td> Connect to the "default" hypervisor running on host <code>oirase</code>
using TLS. </td>
</tr>
<tr>