18
18
package org .ice4j .ice .harvest ;
19
19
20
20
import org .ice4j .*;
21
- import org .ice4j .ice .*;
22
21
import org .ice4j .socket .*;
23
22
24
23
import java .io .*;
@@ -87,11 +86,8 @@ private static List<TransportAddress> getLocalAddresses(
87
86
88
87
for (NetworkInterface iface : interfaces )
89
88
{
90
- if (NetworkUtils .isInterfaceLoopback (iface )
91
- || !NetworkUtils .isInterfaceUp (iface )
92
- || !HostCandidateHarvester .isInterfaceAllowed (iface ))
89
+ if (!HostCandidateHarvester .isInterfaceAllowed (iface ))
93
90
{
94
- //this one is obviously not going to do
95
91
continue ;
96
92
}
97
93
@@ -153,8 +149,8 @@ private static List<TransportAddress> getLocalAddresses(
153
149
* interfaces.
154
150
*
155
151
* @param port the port to listen on.
156
- * @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES } or
157
- * {@link StackProperties#BLOCKED_ADDRESSES } contains invalid values, or
152
+ * @throws IOException when {@link HarvestConfig#getAllowedAddresses() } or
153
+ * {@link HarvestConfig#getBlockedAddresses() } contains invalid values, or
158
154
* if an I/O error occurs.
159
155
*/
160
156
public AbstractTcpListener (int port )
@@ -170,8 +166,8 @@ public AbstractTcpListener(int port)
170
166
*
171
167
* @param port the port to listen on.
172
168
* @param interfaces the interfaces to listen on.
173
- * @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES } or
174
- * {@link StackProperties#BLOCKED_ADDRESSES } contains invalid values, or
169
+ * @throws IOException when {@link HarvestConfig#getAllowedAddresses() } or
170
+ * {@link HarvestConfig#getBlockedAddresses() } contains invalid values, or
175
171
* if an I/O error occurs.
176
172
*/
177
173
public AbstractTcpListener (int port , List <NetworkInterface > interfaces )
@@ -185,8 +181,8 @@ public AbstractTcpListener(int port, List<NetworkInterface> interfaces)
185
181
* specified list of <tt>TransportAddress</tt>es.
186
182
*
187
183
* @param transportAddresses the transport addresses to listen on.
188
- * @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES } or
189
- * {@link StackProperties#BLOCKED_ADDRESSES } contains invalid values, or
184
+ * @throws IOException when {@link HarvestConfig#getAllowedAddresses() } or
185
+ * {@link HarvestConfig#getBlockedAddresses() } contains invalid values, or
190
186
* if an I/O error occurs.
191
187
*/
192
188
public AbstractTcpListener (List <TransportAddress > transportAddresses )
@@ -202,104 +198,18 @@ public AbstractTcpListener(List<TransportAddress> transportAddresses)
202
198
* allocation.
203
199
*
204
200
* @param transportAddresses the list of addresses to add.
205
- * @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES } or
206
- * {@link StackProperties#BLOCKED_ADDRESSES } contains invalid values.
201
+ * @throws IOException when {@link HarvestConfig#getAllowedAddresses() } or
202
+ * {@link HarvestConfig#getBlockedAddresses() } contains invalid values.
207
203
*/
208
204
protected void addLocalAddresses (List <TransportAddress > transportAddresses )
209
205
throws IOException
210
206
{
211
- // White list from the configuration
212
- String [] allowedAddressesStr
213
- = StackProperties .getStringArray (StackProperties .ALLOWED_ADDRESSES ,
214
- ";" );
215
- InetAddress [] allowedAddresses = null ;
216
-
217
- if (allowedAddressesStr != null )
218
- {
219
- allowedAddresses = new InetAddress [allowedAddressesStr .length ];
220
- for (int i = 0 ; i < allowedAddressesStr .length ; i ++)
221
- {
222
- allowedAddresses [i ] = InetAddress .getByName (allowedAddressesStr [i ]);
223
- }
224
- }
225
-
226
- // Black list from the configuration
227
- String [] blockedAddressesStr
228
- = StackProperties .getStringArray (StackProperties .BLOCKED_ADDRESSES ,
229
- ";" );
230
- InetAddress [] blockedAddresses = null ;
231
-
232
- if (blockedAddressesStr != null )
233
- {
234
- blockedAddresses = new InetAddress [blockedAddressesStr .length ];
235
- for (int i = 0 ; i < blockedAddressesStr .length ; i ++)
236
- {
237
- blockedAddresses [i ]
238
- = InetAddress .getByName (blockedAddressesStr [i ]);
239
- }
240
- }
241
-
242
207
for (TransportAddress transportAddress : transportAddresses )
243
208
{
244
- InetAddress address = transportAddress .getAddress ();
245
-
246
- if (address .isLoopbackAddress ())
209
+ if (HostCandidateHarvester .isAddressAllowed (transportAddress .getAddress ()))
247
210
{
248
- //loopback again
249
- continue ;
211
+ localAddresses .add (transportAddress );
250
212
}
251
-
252
- if (!config .useIpv6 () && (address instanceof Inet6Address ))
253
- continue ;
254
-
255
- if (!config .useLinkLocalAddresses () && address .isLinkLocalAddress ())
256
- {
257
- logger .info ("Not using link-local address " + address +" for TCP candidates." );
258
- continue ;
259
- }
260
-
261
- if (allowedAddresses != null )
262
- {
263
- boolean found = false ;
264
-
265
- for (InetAddress allowedAddress : allowedAddresses )
266
- {
267
- if (allowedAddress .equals (address ))
268
- {
269
- found = true ;
270
- break ;
271
- }
272
- }
273
- if (!found )
274
- {
275
- logger .info ("Not using " + address +" for TCP candidates, "
276
- + "because it is not in the allowed list." );
277
- continue ;
278
- }
279
- }
280
-
281
- if (blockedAddresses != null )
282
- {
283
- boolean found = false ;
284
-
285
- for (InetAddress blockedAddress : blockedAddresses )
286
- {
287
- if (blockedAddress .equals (address ))
288
- {
289
- found = true ;
290
- break ;
291
- }
292
- }
293
- if (found )
294
- {
295
- logger .info ("Not using " + address + " for TCP candidates, "
296
- + "because it is in the blocked list." );
297
- continue ;
298
- }
299
- }
300
-
301
- // Passed all checks
302
- localAddresses .add (transportAddress );
303
213
}
304
214
}
305
215
0 commit comments