mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00:00
Mon Jun 25 09:40:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
* src/remote_internal.c: Made cosmetic changes to the code and comments to allow 'make -C docs rebuild' to succeed parsing this file.
This commit is contained in:
parent
2670b9c80a
commit
b48d5f7a47
@ -1,3 +1,9 @@
|
|||||||
|
Mon Jun 25 09:40:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||||
|
|
||||||
|
* src/remote_internal.c: Made cosmetic changes to the code and
|
||||||
|
comments to allow 'make -C docs rebuild' to succeed parsing
|
||||||
|
this file.
|
||||||
|
|
||||||
Mon Jun 25 09:19:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
|
Mon Jun 25 09:19:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||||
|
|
||||||
* docs/site.xsl: Added link to OCaml bindings.
|
* docs/site.xsl: Added link to OCaml bindings.
|
||||||
|
@ -104,13 +104,13 @@ static int initialise_gnutls (virConnectPtr conn);
|
|||||||
static gnutls_session_t negotiate_gnutls_on_connection (virConnectPtr conn, int sock, int no_verify, const char *hostname);
|
static gnutls_session_t negotiate_gnutls_on_connection (virConnectPtr conn, int sock, int no_verify, const char *hostname);
|
||||||
|
|
||||||
/* Supported transports. */
|
/* Supported transports. */
|
||||||
enum transport {
|
typedef enum {
|
||||||
trans_tls,
|
trans_tls,
|
||||||
trans_unix,
|
trans_unix,
|
||||||
trans_ssh,
|
trans_ssh,
|
||||||
trans_ext,
|
trans_ext,
|
||||||
trans_tcp,
|
trans_tcp,
|
||||||
};
|
} transport;
|
||||||
|
|
||||||
static int
|
static int
|
||||||
remoteOpen (virConnectPtr conn, const char *uri_str, int flags)
|
remoteOpen (virConnectPtr conn, const char *uri_str, int flags)
|
||||||
@ -130,7 +130,7 @@ remoteOpen (virConnectPtr conn, const char *uri_str, int flags)
|
|||||||
return VIR_DRV_OPEN_DECLINED; /* Decline - not a remote URL. */
|
return VIR_DRV_OPEN_DECLINED; /* Decline - not a remote URL. */
|
||||||
|
|
||||||
/* What transport? */
|
/* What transport? */
|
||||||
enum transport transport;
|
transport transport;
|
||||||
if (!transport_str || strcasecmp (transport_str, "tls") == 0)
|
if (!transport_str || strcasecmp (transport_str, "tls") == 0)
|
||||||
transport = trans_tls;
|
transport = trans_tls;
|
||||||
else if (strcasecmp (transport_str, "unix") == 0)
|
else if (strcasecmp (transport_str, "unix") == 0)
|
||||||
@ -2665,9 +2665,11 @@ static virNetworkDriver network_driver = {
|
|||||||
.networkSetAutostart = remoteNetworkSetAutostart,
|
.networkSetAutostart = remoteNetworkSetAutostart,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* remoteRegister:
|
/** remoteRegister:
|
||||||
*
|
*
|
||||||
* Register driver with libvirt driver system.
|
* Register driver with libvirt driver system.
|
||||||
|
*
|
||||||
|
* Returns -1 on error.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
remoteRegister (void)
|
remoteRegister (void)
|
||||||
|
Loading…
Reference in New Issue
Block a user