aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/encoding/payloads/traffic_selector_substructure.h
blob: 0c95cb95bc504c44195cce57142a5ebcdea0a0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/**
 * @file traffic_selector_substructure.h
 * 
 * @brief Interface of traffic_selector_substructure_t.
 * 
 */

/*
 * Copyright (C) 2005 Jan Hutter, Martin Willi
 * Hochschule fuer Technik Rapperswil
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * This program 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 General Public License
 * for more details.
 */


#ifndef TRAFFIC_SELECTOR_SUBSTRUCTURE_H_
#define TRAFFIC_SELECTOR_SUBSTRUCTURE_H_

#include <types.h>
#include <encoding/payloads/payload.h>
#include <network/host.h>
#include <config/traffic_selector.h>

/**
 * Length of a TRAFFIC SELECTOR SUBSTRUCTURE without start and end address.
 * 
 * @ingroup payloads
 */
#define TRAFFIC_SELECTOR_HEADER_LENGTH 8

typedef struct traffic_selector_substructure_t traffic_selector_substructure_t;

/**
 * Object representing an IKEv2 TRAFFIC SELECTOR.
 * 
 * The TRAFFIC SELECTOR format is described in draft section 3.13.1.
 * 
 * @ingroup payloads
 * 
 */
struct traffic_selector_substructure_t {
	/**
	 * The payload_t interface.
	 */
	payload_t payload_interface;
	
	/**
	 * @brief Get the type of Traffic selector.
	 *
	 * @param this 		calling traffic_selector_substructure_t object
	 * @return			type of traffic selector
	 *  
	 */
	ts_type_t (*get_ts_type) (traffic_selector_substructure_t *this);
	
	/**
	 * @brief Set the type of Traffic selector.
	 *
	 * @param this 		calling traffic_selector_substructure_t object
	 * @param ts_type	type of traffic selector	
	 */
	void (*set_ts_type) (traffic_selector_substructure_t *this,ts_type_t ts_type);
	
	/**
	 * @brief Get the IP protocol ID of Traffic selector.
	 *
	 * @param this 		calling traffic_selector_substructure_t object
	 * @return			type of traffic selector
	 *  
	 */
	u_int8_t (*get_protocol_id) (traffic_selector_substructure_t *this);
	
	/**
	 * @brief Set the IP protocol ID of Traffic selector
	 *
	 * @param this 			calling traffic_selector_substructure_t object
	 * @param protocol_id	protocol ID of traffic selector	
	 */
	void (*set_protocol_id) (traffic_selector_substructure_t *this,u_int8_t protocol_id);
	
	/**
	 * @brief Get the start port and address as host_t object.
	 *
	 * Returned host_t object has to get destroyed by the caller.
	 * 
	 * @param this 		calling traffic_selector_substructure_t object
	 * @return			start host as host_t object
	 *  
	 */
	host_t *(*get_start_host) (traffic_selector_substructure_t *this);
	
	/**
	 * @brief Set the start port and address as host_t object.
	 *
	 * @param this 			calling traffic_selector_substructure_t object
	 * @param start_host	start host as host_t object
	 */
	void (*set_start_host) (traffic_selector_substructure_t *this,host_t *start_host);
	
	/**
	 * @brief Get the end port and address as host_t object.
	 *
	 * Returned host_t object has to get destroyed by the caller.
	 * 
	 * @param this 		calling traffic_selector_substructure_t object
	 * @return			end host as host_t object
	 *  
	 */
	host_t *(*get_end_host) (traffic_selector_substructure_t *this);
	
	/**
	 * @brief Set the end port and address as host_t object.
	 *
	 * @param this 		calling traffic_selector_substructure_t object
	 * @param end_host	end host as host_t object
	 */
	void (*set_end_host) (traffic_selector_substructure_t *this,host_t *end_host);
	
	/**
	 * @brief Get a traffic_selector_t from this substructure.
	 *
	 * @warning traffic_selector_t must be destroyed after usage.
	 * 
	 * @param this 		calling traffic_selector_substructure_t object
	 * @return			contained traffic_selector_t
	 */
	traffic_selector_t *(*get_traffic_selector) (traffic_selector_substructure_t *this);
	
	/**
	 * @brief Destroys an traffic_selector_substructure_t object.
	 *
	 * @param this 	traffic_selector_substructure_t object to destroy
	 */
	void (*destroy) (traffic_selector_substructure_t *this);
};

/**
 * @brief Creates an empty traffic_selector_substructure_t object.
 *
 * TS type is set to default TS_IPV4_ADDR_RANGE!
 *  
 * @return				created traffic_selector_substructure_t object
 * 
 * @ingroup payloads
 */
traffic_selector_substructure_t *traffic_selector_substructure_create();

/**
 * @brief Creates an initialized traffif selector substructure using
 * the values from a traffic_selector_t.
 * 
 * @param traffic_selector	traffic_selector_t to use for initialization
 * @return					created traffic_selector_substructure_t object
 * 
 * @ingroup payloads
 */
traffic_selector_substructure_t *traffic_selector_substructure_create_from_traffic_selector(traffic_selector_t *traffic_selector);


#endif //TRAFFIC_SELECTOR_SUBSTRUCTURE_H_