blob: 420b5fcdabf66599ac498db69bed7ce77c435486 (
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
|
package org.pihole.dnsproxy;
import android.os.ParcelFileDescriptor;
import android.util.Log;
public class DNSProxyConnection {
public static String THREAD_NAME = "org.pihole.dnsproxy.service.dnsproxy.thread";
private DNSProxyService service;
private Thread thread;
private ParcelFileDescriptor networkInterface;
public DNSProxyConnection(DNSProxyService service) {
this.service = service;
}
/**
* Setup and start the connection
*/
public void start() {
DNSProxyRunner runner = new DNSProxyRunner(this.service);
runner.setOnEstablishListener(tunInterface -> {
this.networkInterface = tunInterface;
});
this.thread = new Thread(runner, DNSProxyConnection.THREAD_NAME);
this.thread.start();
}
/**
* Stop and close the connection
*/
public void stop() {
try {
this.thread.interrupt();
this.networkInterface.close();
} catch (Exception exception) {
Log.e(DNSProxyService.LOG_TAG, "Closing VPN interface", exception);
}
}
}
|