esx_private.h 1.4 KB
Newer Older
1 2 3
/*
 * esx_private.h: private driver struct for the VMware ESX driver
 *
4
 * Copyright (C) 2009-2011 Matthias Bolte <matthias.bolte@googlemail.com>
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22
 *
 */

#ifndef __ESX_PRIVATE_H__
23
# define __ESX_PRIVATE_H__
24

25
# include "internal.h"
26
# include "virerror.h"
27
# include "capabilities.h"
28
# include "domain_conf.h"
29
# include "esx_vi.h"
30 31

typedef struct _esxPrivate {
32
    esxVI_Context *primary; /* points to host or vCenter */
33 34
    esxVI_Context *host;
    esxVI_Context *vCenter;
35
    esxUtil_ParsedUri *parsedUri;
36
    virCapsPtr caps;
37
    virDomainXMLOptionPtr xmlopt;
38 39 40
    int32_t maxVcpus;
    esxVI_Boolean supportsVMotion;
    esxVI_Boolean supportsLongMode; /* aka x86_64 */
41
    esxVI_Boolean supportsScreenshot;
42 43 44 45
    int32_t usedCpuTimeCounterId;
} esxPrivate;

#endif /* __ESX_PRIVATE_H__ */