2018-05-10 13:30:42 +00:00
|
|
|
/*
|
|
|
|
* virnwfilterbindingdef.h: network filter binding XML processing
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-12-13 13:32:06 +00:00
|
|
|
|
2019-06-07 20:20:18 +00:00
|
|
|
#pragma once
|
2018-05-10 13:30:42 +00:00
|
|
|
|
2019-06-07 20:20:18 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include "virmacaddr.h"
|
|
|
|
#include "virhash.h"
|
|
|
|
#include "virbuffer.h"
|
2020-02-16 22:09:05 +00:00
|
|
|
#include "virxml.h"
|
2018-05-10 13:30:42 +00:00
|
|
|
|
|
|
|
typedef struct _virNWFilterBindingDef virNWFilterBindingDef;
|
|
|
|
struct _virNWFilterBindingDef {
|
|
|
|
char *ownername;
|
|
|
|
unsigned char owneruuid[VIR_UUID_BUFLEN];
|
|
|
|
char *portdevname;
|
|
|
|
char *linkdevname;
|
|
|
|
virMacAddr mac;
|
|
|
|
char *filter;
|
2020-10-22 17:04:18 +00:00
|
|
|
GHashTable *filterparams;
|
2018-05-10 13:30:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2021-03-11 07:16:13 +00:00
|
|
|
virNWFilterBindingDefFree(virNWFilterBindingDef *binding);
|
|
|
|
virNWFilterBindingDef *
|
|
|
|
virNWFilterBindingDefCopy(virNWFilterBindingDef *src);
|
2018-05-10 13:30:42 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virNWFilterBindingDef *
|
2018-05-10 12:37:53 +00:00
|
|
|
virNWFilterBindingDefParseNode(xmlDocPtr xml,
|
|
|
|
xmlNodePtr root);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virNWFilterBindingDef *
|
2018-05-10 12:37:53 +00:00
|
|
|
virNWFilterBindingDefParseString(const char *xml);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virNWFilterBindingDef *
|
2018-05-10 12:37:53 +00:00
|
|
|
virNWFilterBindingDefParseFile(const char *filename);
|
|
|
|
|
|
|
|
char *
|
|
|
|
virNWFilterBindingDefFormat(const virNWFilterBindingDef *def);
|
|
|
|
|
|
|
|
int
|
2021-03-11 07:16:13 +00:00
|
|
|
virNWFilterBindingDefFormatBuf(virBuffer *buf,
|
2018-05-10 12:37:53 +00:00
|
|
|
const virNWFilterBindingDef *def);
|