Search found 62 matches

by [NL]Pur
2004-10-25 03:18
Forum: Other Direct Connect tools
Topic: Tunnel
Replies: 1
Views: 1974

you could try in active mode on port 23 or 80
by [NL]Pur
2004-10-25 03:11
Forum: Hubs and scripts
Topic: anti-spam script
Replies: 1
Views: 1776

by [NL]Pur
2004-10-24 05:26
Forum: Protocol Alley
Topic: when send $Hello, $MyInfo ...
Replies: 7
Views: 6797

with what tool are you looking at the traffic the hub is sending towards you?
by [NL]Pur
2004-10-24 04:58
Forum: Feature Discussion (Archived)
Topic: to use country everywhere
Replies: 7
Views: 4289

Sounds like a something ppl rarely going to use,

also if you want to do this clientside you must first connect to every client to get ip and resolve country.

that's really bloat overhead traffic for only an country code
by [NL]Pur
2004-08-13 08:01
Forum: Protocol Alley
Topic: support zSearch[moglo]
Replies: 3
Views: 3123

ah , yes tx. So i don't have to send any List to moglo. :)

it is btw:

$Supports zSearch[moglo]
by [NL]Pur
2004-08-13 05:01
Forum: Feature Discussion (Archived)
Topic: protection for hub owners
Replies: 36
Views: 14537

If you ban me, and I want back in, giving you some unique ID that will let you tell that it's still me (even though I'm on a new IP range with a different nick) is directly against my self interest in getting into the hub. This unique ID must be stored localy on the clients computer somewhere, so i...
by [NL]Pur
2004-08-13 04:16
Forum: Protocol Alley
Topic: support zSearch[moglo]
Replies: 3
Views: 3123

support zSearch[moglo]

I don't know from which version on this is implemented, but moglo has a $support called
zSearch[moglo] , i was wondering what kind of feature this is.
by [NL]Pur
2004-08-12 10:37
Forum: Protocol Alley
Topic: Java, Singletons and Uniformity
Replies: 13
Views: 7799

String s = "hello"; Singleton st = (Singleton) s; st.someSingletonMethod(); This is a crappy example, First of All you didn't even compile my or the code you thought up because:, ClassCastException are always given by the compiler, that is a buildin securtiy thing of the VM. offcourse you can't typ...
by [NL]Pur
2004-08-12 07:54
Forum: Protocol Alley
Topic: Java, Singletons and Uniformity
Replies: 13
Views: 7799

You must type cast right way, then it won't cause an Exception. Protected methods are available for all classes in the same package. Has nothing todo with subclasses. And you word for it ? I already tried before i posted to create the object and that worked fine. And it's a must do to use Objects in...
by [NL]Pur
2004-08-12 05:17
Forum: Protocol Alley
Topic: Java, Singletons and Uniformity
Replies: 13
Views: 7799

Hmm. Resurrecting a five month old thread. Interesting. That code will not work. public Object getInstance() is an instance method. You need to call the method on an object of type Singleton. eg. s.getInstance(); where s is a Singleton object. if you call s.getInstance() you can typecast it to a Si...
by [NL]Pur
2004-08-11 07:59
Forum: Protocol Alley
Topic: Java, Singletons and Uniformity
Replies: 13
Views: 7799

class Singleton implements Single { private static Singleton instance = null; private Singleton() { // constructor code } public Object getInstance() { if (instance == null) { instance = new Singleton(); } return instance; } // other code } interface Single { public Object getInstance(); }
by [NL]Pur
2004-08-09 17:58
Forum: Programmer's Help
Topic: help compiling
Replies: 5
Views: 3169

The correct versions of stlport / wtl aren't supplied for the stable version 0.401,

I had this myself first too, so i just went on using the 'unstable' 0.403 version of dc++.