/servers/media/core/server-impl/src/main/java/org/mobicents/media/server/impl/rtp/TestStun.java

http://mobicents.googlecode.com/ · Java · 51 lines · 23 code · 5 blank · 23 comment · 3 complexity · 5ccce714292c2ae5abf3924f141eb6ae MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright XXXX, Red Hat Middleware LLC, and individual contributors as indicated
  4. * by the @authors tag. All rights reserved.
  5. * See the copyright.txt in the distribution for a full listing
  6. * of individual contributors.
  7. * This copyrighted material is made available to anyone wishing to use,
  8. * modify, copy, or redistribute it subject to the terms and conditions
  9. * of the GNU General Public License, v. 2.0.
  10. * This program is distributed in the hope that it will be useful, but WITHOUT A
  11. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. * PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. * You should have received a copy of the GNU General Public License,
  14. * v. 2.0 along with this distribution; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16. * MA 02110-1301, USA.
  17. */
  18. package org.mobicents.media.server.impl.rtp;
  19. import net.java.stun4j.StunAddress;
  20. import net.java.stun4j.client.NetworkConfigurationDiscoveryProcess;
  21. import net.java.stun4j.client.StunDiscoveryReport;
  22. /**
  23. *
  24. * @author kulikov
  25. */
  26. public class TestStun {
  27. public static void main(String[] args) throws Exception {
  28. StunAddress localStunAddress = new StunAddress("192.168.1.2", 8000);
  29. StunAddress serverStunAddress = new StunAddress("stun.ekiga.net", 3478);
  30. NetworkConfigurationDiscoveryProcess addressDiscovery =
  31. new NetworkConfigurationDiscoveryProcess(
  32. localStunAddress, serverStunAddress);
  33. addressDiscovery.start();
  34. StunDiscoveryReport report = addressDiscovery.determineAddress();
  35. if (report.getPublicAddress() != null) {
  36. String publicAddressFromStun = report.getPublicAddress().getSocketAddress().getAddress().getHostAddress();
  37. System.out.println("Public address: " + publicAddressFromStun);
  38. // TODO set a timer to retry the binding and provide a
  39. // callback to update the global ip address and port
  40. } else {
  41. System.out.println("Stun discovery failed to find a valid public ip address, disabling stun !");
  42. }
  43. System.out.println("Stun report = " + report);
  44. addressDiscovery.shutDown();
  45. }
  46. }