diff options
author | Martin Willi <martin@strongswan.org> | 2006-02-22 16:14:40 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-02-22 16:14:40 +0000 |
commit | a527a426d6d2c2d6619174b80816a96d45a0a9c9 (patch) | |
tree | 49ff184a03542fa74820e2aa2ef40dc84cd61611 /Source/charon/config/traffic_selector.h | |
parent | 0a373aec33c977b061c57b72a3bc909ef5971b56 (diff) | |
download | strongswan-a527a426d6d2c2d6619174b80816a96d45a0a9c9.tar.bz2 strongswan-a527a426d6d2c2d6619174b80816a96d45a0a9c9.tar.xz |
- proposal setup implementation begun
Diffstat (limited to 'Source/charon/config/traffic_selector.h')
-rw-r--r-- | Source/charon/config/traffic_selector.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/charon/config/traffic_selector.h b/Source/charon/config/traffic_selector.h index 662795352..553a73e66 100644 --- a/Source/charon/config/traffic_selector.h +++ b/Source/charon/config/traffic_selector.h @@ -24,6 +24,7 @@ #define _TRAFFIC_SELECTOR_H_ #include <types.h> +#include <network/host.h> typedef enum ts_type_t ts_type_t; @@ -33,7 +34,8 @@ typedef enum ts_type_t ts_type_t; * @ingroup config */ enum ts_type_t { - /* + + /** * A range of IPv4 addresses, represented by two four (4) octet * values. The first value is the beginning IPv4 address * (inclusive) and the second value is the ending IPv4 address @@ -41,7 +43,8 @@ enum ts_type_t { * addresses are considered to be within the list. */ TS_IPV4_ADDR_RANGE = 7, - /* + + /** * A range of IPv6 addresses, represented by two sixteen (16) * octet values. The first value is the beginning IPv6 address * (inclusive) and the second value is the ending IPv6 address @@ -75,7 +78,7 @@ struct traffic_selector_t { /** * @brief Compare two traffic selectors, and create a new one - * which is the largest subset of bouth (subnet & port). + * which is the largest subset of both (subnet & port). * * Resulting traffic_selector is newly created and must be destroyed. * |