2012-08-20 13:46:38 +00:00
|
|
|
/*
|
|
|
|
* virsh-domain-monitor.h: Commands to monitor domain status
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005, 2007-2012 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-08-20 13:46:38 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-18 16:13:15 +00:00
|
|
|
#pragma once
|
2012-08-20 13:46:38 +00:00
|
|
|
|
2019-06-18 16:13:15 +00:00
|
|
|
#include "virsh.h"
|
2012-08-20 13:46:38 +00:00
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
char *virshGetDomainDescription(vshControl *ctl, virDomainPtr dom,
|
|
|
|
bool title, unsigned int flags)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2012-08-20 13:46:38 +00:00
|
|
|
|
2019-12-05 15:00:22 +00:00
|
|
|
VIR_ENUM_DECL(virshDomainInterfaceAddressesSource);
|
|
|
|
|
2012-08-20 13:46:38 +00:00
|
|
|
extern const vshCmdDef domMonitoringCmds[];
|