2017-02-28 21:20:44 +00:00
|
|
|
/*
|
|
|
|
* virinterfaceobj.h: interface object handling entry points
|
|
|
|
* (derived from interface_conf.h)
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#pragma once
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#include "internal.h"
|
2017-02-28 21:20:44 +00:00
|
|
|
|
|
|
|
typedef struct _virInterfaceObj virInterfaceObj;
|
|
|
|
typedef virInterfaceObj *virInterfaceObjPtr;
|
|
|
|
|
|
|
|
typedef struct _virInterfaceObjList virInterfaceObjList;
|
|
|
|
typedef virInterfaceObjList *virInterfaceObjListPtr;
|
|
|
|
|
2017-05-15 18:31:44 +00:00
|
|
|
void
|
|
|
|
virInterfaceObjEndAPI(virInterfaceObjPtr *obj);
|
|
|
|
|
2017-04-25 21:45:02 +00:00
|
|
|
virInterfaceDefPtr
|
|
|
|
virInterfaceObjGetDef(virInterfaceObjPtr obj);
|
|
|
|
|
|
|
|
bool
|
|
|
|
virInterfaceObjIsActive(virInterfaceObjPtr obj);
|
|
|
|
|
|
|
|
void
|
|
|
|
virInterfaceObjSetActive(virInterfaceObjPtr obj,
|
|
|
|
bool active);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-04-14 19:45:27 +00:00
|
|
|
virInterfaceObjListPtr
|
|
|
|
virInterfaceObjListNew(void);
|
|
|
|
|
2017-03-02 17:01:29 +00:00
|
|
|
int
|
2017-04-14 20:49:48 +00:00
|
|
|
virInterfaceObjListFindByMACString(virInterfaceObjListPtr interfaces,
|
|
|
|
const char *mac,
|
2017-04-15 11:08:01 +00:00
|
|
|
char **const matches,
|
2017-04-14 20:49:48 +00:00
|
|
|
int maxmatches);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-03-02 17:01:29 +00:00
|
|
|
virInterfaceObjPtr
|
2017-04-14 20:49:48 +00:00
|
|
|
virInterfaceObjListFindByName(virInterfaceObjListPtr interfaces,
|
|
|
|
const char *name);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-03-02 17:01:29 +00:00
|
|
|
void
|
2017-04-19 02:29:44 +00:00
|
|
|
virInterfaceObjFree(virInterfaceObjPtr obj);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-04-14 19:45:27 +00:00
|
|
|
virInterfaceObjListPtr
|
|
|
|
virInterfaceObjListClone(virInterfaceObjListPtr interfaces);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-03-02 17:01:29 +00:00
|
|
|
virInterfaceObjPtr
|
2017-04-14 20:49:48 +00:00
|
|
|
virInterfaceObjListAssignDef(virInterfaceObjListPtr interfaces,
|
|
|
|
virInterfaceDefPtr def);
|
2017-03-02 17:01:29 +00:00
|
|
|
|
|
|
|
void
|
2017-04-14 20:49:48 +00:00
|
|
|
virInterfaceObjListRemove(virInterfaceObjListPtr interfaces,
|
|
|
|
virInterfaceObjPtr obj);
|
2017-03-02 17:01:29 +00:00
|
|
|
|
|
|
|
typedef bool
|
|
|
|
(*virInterfaceObjListFilter)(virConnectPtr conn,
|
|
|
|
virInterfaceDefPtr def);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-04-06 13:23:17 +00:00
|
|
|
int
|
2017-04-14 20:49:48 +00:00
|
|
|
virInterfaceObjListNumOfInterfaces(virInterfaceObjListPtr interfaces,
|
|
|
|
bool wantActive);
|
2017-04-06 13:23:17 +00:00
|
|
|
|
2017-04-06 13:37:57 +00:00
|
|
|
int
|
2017-04-14 20:49:48 +00:00
|
|
|
virInterfaceObjListGetNames(virInterfaceObjListPtr interfaces,
|
|
|
|
bool wantActive,
|
|
|
|
char **const names,
|
|
|
|
int maxnames);
|
2017-04-06 13:37:57 +00:00
|
|
|
|
2018-07-10 19:01:45 +00:00
|
|
|
int
|
|
|
|
virInterfaceObjListExport(virConnectPtr conn,
|
|
|
|
virInterfaceObjListPtr ifaceobjs,
|
|
|
|
virInterfacePtr **ifaces,
|
|
|
|
virInterfaceObjListFilter filter,
|
|
|
|
unsigned int flags);
|