]> sjero.net Git - linphone/blob - p2pproxy/test-src/org/linphone/p2pproxy/test/P2pProxyNatedNetworkTester.java
remove mediastreamer2 and add it as a submodule instead.
[linphone] / p2pproxy / test-src / org / linphone / p2pproxy / test / P2pProxyNatedNetworkTester.java
1 /*
2 p2pproxy
3 Copyright (C) 2007  Jehan Monnier ()
4
5 P2pProxyNatedNetworkTester.java - .
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 */
21 package org.linphone.p2pproxy.test;
22
23 import java.net.InetAddress;
24 import java.util.ArrayList;
25
26 import org.linphone.p2pproxy.api.P2pProxyInstance;
27 import org.linphone.p2pproxy.test.utils.P2pNetwork;
28 import org.linphone.p2pproxy.test.utils.SipClient;
29
30
31 public class P2pProxyNatedNetworkTester extends P2pProxyNetworkingTester {
32
33    /* (non-Javadoc)
34     * @see org.linphone.p2pproxy.test.P2pProxyNetworkingTester#setUp()
35     */
36    @Override
37    protected void setUp() throws Exception {
38       if (mP2pNetwork == null) {
39          mP2pNetwork = new P2pNetwork(1,1,0,0,10,true,System.getProperty("p2pproxy.publicAddressUser",System.getProperty("user.name")),System.getProperty("p2pproxy.publicAddress",InetAddress.getLocalHost().getHostName()));
40          mProxyInstanceList = new ArrayList<P2pProxyInstance>(mP2pNetwork.getAllPeers());
41           for (P2pProxyInstance lP2pProxyInstance:mProxyInstanceList) {
42              SipClient lSipClient = new SipClient(lP2pProxyInstance.getSipClientProvider(),lP2pProxyInstance.getSipClientName(),lP2pProxyInstance.getAdvertisementDiscoveryTimeout()); 
43              lSipClient.register();
44              mClientList.add(lSipClient);
45           }
46       }
47    }
48 }