View Single Post
  #2 (permalink)  
Old May 10th, 2005
Kyle.G
Guest
 
Posts: n/a
Default

So here's what I do:

Code:
[frozen@frozen ~/programming/limewire/gui]$ ./run
and then, in another terminal, I'll run:

Code:
[frozen@frozen ~]$ netstat -anp
tcp        0      0 0.0.0.0:55555           0.0.0.0:*               LISTEN      26629/java          
tcp        0      0 0.0.0.0:45100           0.0.0.0:*               LISTEN      26629/java
tcp        0      0 xxxxxxxxxxxxx:5214      0.0.0.0:*               LISTEN      26629/java 
tcp        0      1 xxxxxxxxxxxxx:41639     78.39.55.102:59009      SYN_SENT    26629/java
tcp        0      1 xxxxxxxxxxxxx:41638     78.39.55.102:59009      SYN_SENT    26629/java 
udp        0      0 0.0.0.0:55555           0.0.0.0:*                           26629/java
udp        0      0 0.0.0.0:6347            0.0.0.0:*                           26629/java          
udp        0      0 0.0.0.0:5353            0.0.0.0:*                           26629/java
... (a lot of other things too, but these are the relevant items) I've replaced my IP address with xxxxxxx.

Code:
[frozen@frozen ~]$ ps waxu | grep 26629
frozen   26629  0.6  9.1 244212 47400 pts/0  S    22:43   0:03 java -Djava.library.path=../lib/native/linux com.limegroup.gnutella.gui.Main
The SYN_SENT entries remain present for several minutes before disappearing. I tried to ping 78.39.55.102 without any luck. Couldn't convert it to a hostname either, so my guess it doesn't exist. So why is limewire trying to connect to it?
Reply With Quote