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/iterator.h>
24 #define TAP_DEVICE "/dev/net/tun"
26 typedef struct iface_t iface_t
;
29 * @brief Interface in a guest, connected to a tap device on the host.
34 * @brief Get the interface name in the guest (e.g. eth0).
36 * @return guest interface name
38 char* (*get_guest
)(iface_t
*this);
41 * @brief Get the interface name at the host (e.g. tap0).
43 * @return host interface (tap device) name
45 char* (*get_host
)(iface_t
*this);
48 bool (*up) (iface_t *this);
49 bool (*down) (iface_t *this);
50 bool (*add_addr) (iface_t *this, host_t *addr);
51 bool (*del_addr) (iface_t *this, host_t *addr);
52 iterator_t* (*create_addr_iterator) (iface_t *this);
56 * @brief Destroy an interface
58 void (*destroy
) (iface_t
*this);
62 * @brief Create a new interface for a guest
64 * @param guest name of the interface in the guest
65 * @param mconsole mconsole of guest
66 * @return interface descriptor, or NULL if failed
68 iface_t
*iface_create(char *guest
, mconsole_t
*mconsole
);