diff options
author | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2008-07-10 12:47:56 +0000 |
---|---|---|
committer | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2008-07-10 12:47:56 +0000 |
commit | eb841c5ef668a48782ef1154fda65cb6048f5885 (patch) | |
tree | 00dd0cb4313bf2291d94ed511fe51f0b4bc7ea7a /src/dumm/bridge.h | |
parent | 738206039047924ae7e4762a53d121be1ca43000 (diff) | |
download | vyos-strongswan-eb841c5ef668a48782ef1154fda65cb6048f5885.tar.gz vyos-strongswan-eb841c5ef668a48782ef1154fda65cb6048f5885.zip |
- Updated to new upstream.
Diffstat (limited to 'src/dumm/bridge.h')
-rw-r--r-- | src/dumm/bridge.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/dumm/bridge.h b/src/dumm/bridge.h index 6d28ed376..79a0a3a72 100644 --- a/src/dumm/bridge.h +++ b/src/dumm/bridge.h @@ -17,7 +17,7 @@ #define BRIDGE_H #include <library.h> -#include <utils/iterator.h> +#include <utils/enumerator.h> typedef struct bridge_t bridge_t; @@ -31,32 +31,32 @@ struct bridge_t { /** * @brief Get the name of the bridge. * - * @return name of the bridge + * @return name of the bridge */ char* (*get_name)(bridge_t *this); /** * @brief Add an interface to a bridge. * - * @param iface interface to add - * @return TRUE if interface added + * @param iface interface to add + * @return TRUE if interface added */ bool (*connect_iface)(bridge_t *this, iface_t *iface); /** * @brief Remove an interface from a bridge. * - * @param iface interface to remove - * @return TRUE if interface removed + * @param iface interface to remove + * @return TRUE if interface removed */ bool (*disconnect_iface)(bridge_t *this, iface_t *iface); /** - * @brief Create an iterator over all interfaces. + * @brief Create an enumerator over all interfaces. * - * @return iterator over iface_t's + * @return enumerator over iface_t's */ - iterator_t* (*create_iface_iterator)(bridge_t *this); + enumerator_t* (*create_iface_enumerator)(bridge_t *this); /** * @brief Destroy a bridge |