mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 13:20:20 +00:00
568a417224
Require that all headers are guarded by a symbol named LIBVIRT_$FILENAME where $FILENAME is the uppercased filename, with all characters outside a-z changed into '_'. Note we do not use a leading __ because that is technically a namespace reserved for the toolchain. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
80 lines
2.3 KiB
C
80 lines
2.3 KiB
C
/*
|
|
* xenapi_utils.h: Xen API driver -- utils header
|
|
* Copyright (C) 2012, Red Hat, Inc.
|
|
* Copyright (C) 2009, 2010 Citrix Ltd.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef LIBVIRT_XENAPI_UTILS_H
|
|
# define LIBVIRT_XENAPI_UTILS_H
|
|
|
|
# include <xen/api/xen_all.h>
|
|
# include "internal.h"
|
|
# include "viruri.h"
|
|
# include "domain_conf.h"
|
|
|
|
# define NETWORK_DEVID_SIZE (12)
|
|
|
|
typedef uint64_t cpumap_t;
|
|
|
|
void
|
|
xenSessionFree(xen_session *session);
|
|
|
|
char *
|
|
xenapiUtil_RequestPassword(virConnectAuthPtr auth, const char *username,
|
|
const char *hostname);
|
|
|
|
int
|
|
xenapiUtil_ParseQuery(virConnectPtr conn, virURIPtr uri, int *noVerify);
|
|
|
|
enum xen_on_normal_exit
|
|
actionShutdownLibvirt2XenapiEnum(virDomainLifecycleAction action);
|
|
|
|
enum xen_on_crash_behaviour
|
|
actionCrashLibvirt2XenapiEnum(virDomainLifecycleAction action);
|
|
|
|
char *
|
|
createXenAPIBootOrderString(int nboot, int *bootDevs);
|
|
|
|
virDomainBootOrder map2LibvirtBootOrder(char c);
|
|
|
|
virDomainLifecycleAction
|
|
xenapiNormalExitEnum2virDomainLifecycle(enum xen_on_normal_exit action);
|
|
|
|
virDomainLifecycleAction
|
|
xenapiCrashExitEnum2virDomainLifecycle(enum xen_on_crash_behaviour action);
|
|
|
|
void getCpuBitMapfromString(char *mask, unsigned char *cpumap, int maplen);
|
|
|
|
int getStorageVolumeType(char *type);
|
|
|
|
char *returnErrorFromSession(xen_session *session);
|
|
|
|
virDomainState
|
|
mapPowerState(enum xen_vm_power_state state);
|
|
|
|
char *
|
|
mapDomainPinVcpu(unsigned char *cpumap, int maplen);
|
|
|
|
int
|
|
createVMRecordFromXml (virConnectPtr conn, virDomainDefPtr defPtr,
|
|
xen_vm_record **record, xen_vm *vm);
|
|
|
|
int
|
|
allocStringMap (xen_string_string_map **strings, char *key, char *val);
|
|
|
|
#endif /* LIBVIRT_XENAPI_UTILS_H */
|