secret_conf.h 1.9 KB
Newer Older
1 2 3
/*
 * secret_conf.h: internal <secret> XML handling API
 *
4
 * Copyright (C) 2009-2010, 2013-2014, 2016 Red Hat, Inc.
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
#pragma once
22

23
#include "internal.h"
24 25 26 27

typedef struct _virSecretDef virSecretDef;
typedef virSecretDef *virSecretDefPtr;
struct _virSecretDef {
28 29
    bool isephemeral;
    bool isprivate;
30
    unsigned char uuid[VIR_UUID_BUFLEN];
31
    char *description;          /* May be NULL */
32
    int usage_type;  /* virSecretUsageType */
33
    char *usage_id; /* May be NULL */
34 35 36
};

void virSecretDefFree(virSecretDefPtr def);
37
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virSecretDef, virSecretDefFree);
38

39 40
virSecretDefPtr virSecretDefParseString(const char *xml);
virSecretDefPtr virSecretDefParseFile(const char *filename);
E
Eric Blake 已提交
41
char *virSecretDefFormat(const virSecretDef *def);
42

43
#define VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL \
O
Osier Yang 已提交
44 45 46
                (VIR_CONNECT_LIST_SECRETS_EPHEMERAL     | \
                 VIR_CONNECT_LIST_SECRETS_NO_EPHEMERAL)

47
#define VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE \
O
Osier Yang 已提交
48 49 50
                (VIR_CONNECT_LIST_SECRETS_PRIVATE     | \
                 VIR_CONNECT_LIST_SECRETS_NO_PRIVATE)

51
#define VIR_CONNECT_LIST_SECRETS_FILTERS_ALL \
O
Osier Yang 已提交
52 53
                (VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL  | \
                 VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE)