libvirt/src/util/virmacmap.h
Ján Tomko a26df27662 conf: add cleanup func for virMacMap
Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
2021-09-09 18:06:13 +02:00

51 lines
1.5 KiB
C

/*
* virmacmap.h: MAC address <-> Domain name mapping
*
* Copyright (C) 2016 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/>.
*/
#pragma once
#include "internal.h"
#include "virobject.h"
typedef struct virMacMap virMacMap;
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virMacMap, virObjectUnref)
char *
virMacMapFileName(const char *dnsmasqStateDir,
const char *bridge);
virMacMap *virMacMapNew(const char *file);
int virMacMapAdd(virMacMap *mgr,
const char *domain,
const char *mac);
int virMacMapRemove(virMacMap *mgr,
const char *domain,
const char *mac);
GSList *virMacMapLookup(virMacMap *mgr,
const char *domain);
int virMacMapWriteFile(virMacMap *mgr,
const char *filename);
int virMacMapDumpStr(virMacMap *mgr,
char **str);