My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 1 attachment: portfwd.patch (549 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Index: org/enterprisepower/net/portforward/Listener.java
===================================================================
--- org/enterprisepower/net/portforward/Listener.java (revision 10)
+++ org/enterprisepower/net/portforward/Listener.java (working copy)
@@ -53,7 +53,9 @@

public void run() {
Socket source = null;
- new Thread(cleaner).start();
+ Thread thread = new Thread(cleaner);
+ thread.setDaemon(true);
+ thread.start();
while (true) {
try {
TargetConnector connector = new TargetConnector(to);
Powered by Google Project Hosting