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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VIRINTERFACEOBJ_H__
|
|
|
|
# define __VIRINTERFACEOBJ_H__
|
|
|
|
|
|
|
|
# include "internal.h"
|
|
|
|
|
|
|
|
typedef struct _virInterfaceObj virInterfaceObj;
|
|
|
|
typedef virInterfaceObj *virInterfaceObjPtr;
|
|
|
|
|
|
|
|
typedef struct _virInterfaceObjList virInterfaceObjList;
|
|
|
|
typedef virInterfaceObjList *virInterfaceObjListPtr;
|
|
|
|
struct _virInterfaceObjList {
|
|
|
|
size_t count;
|
|
|
|
virInterfaceObjPtr *objs;
|
|
|
|
};
|
|
|
|
|
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-03-02 17:01:29 +00:00
|
|
|
int
|
|
|
|
virInterfaceObjFindByMACString(virInterfaceObjListPtr interfaces,
|
|
|
|
const char *mac,
|
|
|
|
virInterfaceObjPtr *matches, int maxmatches);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-03-02 17:01:29 +00:00
|
|
|
virInterfaceObjPtr
|
|
|
|
virInterfaceObjFindByName(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-03-02 17:01:29 +00:00
|
|
|
void
|
|
|
|
virInterfaceObjListFree(virInterfaceObjListPtr vms);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-03-02 17:01:29 +00:00
|
|
|
int
|
|
|
|
virInterfaceObjListClone(virInterfaceObjListPtr src,
|
|
|
|
virInterfaceObjListPtr dest);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-03-02 17:01:29 +00:00
|
|
|
virInterfaceObjPtr
|
|
|
|
virInterfaceObjAssignDef(virInterfaceObjListPtr interfaces,
|
|
|
|
virInterfaceDefPtr def);
|
|
|
|
|
|
|
|
void
|
|
|
|
virInterfaceObjRemove(virInterfaceObjListPtr interfaces,
|
2017-04-19 02:29:44 +00:00
|
|
|
virInterfaceObjPtr obj);
|
2017-03-02 17:01:29 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
virInterfaceObjLock(virInterfaceObjPtr obj);
|
|
|
|
|
|
|
|
void
|
|
|
|
virInterfaceObjUnlock(virInterfaceObjPtr obj);
|
|
|
|
|
|
|
|
typedef bool
|
|
|
|
(*virInterfaceObjListFilter)(virConnectPtr conn,
|
|
|
|
virInterfaceDefPtr def);
|
2017-02-28 21:20:44 +00:00
|
|
|
|
2017-04-06 13:23:17 +00:00
|
|
|
int
|
|
|
|
virInterfaceObjNumOfInterfaces(virInterfaceObjListPtr interfaces,
|
|
|
|
bool wantActive);
|
|
|
|
|
2017-04-06 13:37:57 +00:00
|
|
|
int
|
|
|
|
virInterfaceObjGetNames(virInterfaceObjListPtr interfaces,
|
|
|
|
bool wantActive,
|
|
|
|
char **const names,
|
|
|
|
int maxnames);
|
|
|
|
|
2017-02-28 21:20:44 +00:00
|
|
|
#endif /* __VIRINTERFACEOBJ_H__ */
|