summaryrefslogtreecommitdiff
path: root/ext/libnatpmp/JavaTest.java
blob: 0379c18218ed5521b050ad853a9324033e68f52c (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
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.nio.ByteBuffer;

import fr.free.miniupnp.libnatpmp.NatPmp;
import fr.free.miniupnp.libnatpmp.NatPmpResponse;

class JavaTest {
    public static void main(String[] args) {
	NatPmp natpmp = new NatPmp();

        natpmp.sendPublicAddressRequest();
        NatPmpResponse response = new NatPmpResponse();

        int result = -1;
        do{
            result = natpmp.readNatPmpResponseOrRetry(response);
	    try {
		Thread.sleep(4000);
	    } catch (InterruptedException e) {
		//fallthrough
	    }
        } while (result != 0);

	byte[] bytes = intToByteArray(response.addr);

	try {
	    InetAddress inetAddress = InetAddress.getByAddress(bytes);
	    System.out.println("Public address is " + inetAddress);
	} catch (UnknownHostException e) {
	    throw new RuntimeException(e);
	}
    }

    public static final byte[] intToByteArray(int value) {
        return new byte[] {
            (byte)value,
            (byte)(value >>> 8),
            (byte)(value >>> 16),
            (byte)(value >>> 24)};
    }
}