libvirt/tools/virt-admin.h
Martin Kletzander df8192aaf4 admin: Rename virAdmConnect to virAdmDaemon
virAdmConnect was named after virConnect, but after some discussions,
most of the APIs called will be working with remote daemon and starting
them virAdmDaemon will make more sense.  Only possibly controversal name
is CloseCallback (de)registration, and connecting to the daemon (which
will still be Open/Close), but even this makes sense if one thinks about
the daemon being opened and closed, e.g. as file, etc.

This way all the APIs working with the daemon will start with
virAdmDaemon prefix, they will accept virAdmDaemonPtr as first parameter
and that will better suit with other namings as well (virDomain*,
virAdmServer*, etc.).

Because in virt-admin, the connection name does not refer to a struct
that would have a connect in its name, also adjust 'connname' in
clients.  And because it is not used anywhere in the vsh code, move it
from there into each client.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
2015-12-01 11:44:48 +01:00

48 lines
1.2 KiB
C

/*
* virt-admin.h: a shell to exercise the libvirt admin API
*
* Copyright (C) 2015 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*
* Erik Skultety <eskultet@redhat.com>
*/
#ifndef VIRT_ADMIN_H
# define VIRT_ADMIN_H
# include "internal.h"
# include "vsh.h"
# define VIR_FROM_THIS VIR_FROM_NONE
/*
* Command group types
*/
typedef struct _vshAdmControl vshAdmControl;
typedef vshAdmControl *vshAdmControlPtr;
/*
* adminControl
*/
struct _vshAdmControl {
virAdmDaemonPtr dmn; /* remote daemon */
char *name;
bool wantReconnect;
};
#endif /* VIRT_ADMIN_H */