2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 #include <utils/enumerator.h>
22 #define TAP_DEVICE "/dev/net/tun"
24 typedef struct iface_t iface_t
;
31 * @brief Interface in a guest, connected to a tap device on the host.
36 * @brief Get the interface name in the guest (e.g. eth0).
38 * @return guest interface name
40 char* (*get_guestif
)(iface_t
*this);
43 * @brief Get the interface name at the host (e.g. tap0).
45 * @return host interface (tap device) name
47 char* (*get_hostif
)(iface_t
*this);
50 * @brief Set the bridge this interface is attached to.
52 * @param bridge assigned bridge, or NULL for none
54 void (*set_bridge
)(iface_t
*this, bridge_t
*bridge
);
57 * @brief Get the bridge this iface is connected, or NULL.
59 * @return connected bridge, or NULL
61 bridge_t
* (*get_bridge
)(iface_t
*this);
64 * @brief Get the guest this iface belongs to.
66 * @return guest of this iface
68 guest_t
* (*get_guest
)(iface_t
*this);
71 * @brief Destroy an interface
73 void (*destroy
) (iface_t
*this);
77 * @brief Create a new interface for a guest
79 * @param name name of the interface in the guest
80 * @param guest guest this iface is connecting
81 * @param mconsole mconsole of guest
82 * @return interface descriptor, or NULL if failed
84 iface_t
*iface_create(char *name
, guest_t
*guest
, mconsole_t
*mconsole
);