Search found 10 matches

by Who
2003-05-05 03:32
Forum: Protocol Alley
Topic: porting DC++ to Linux?
Replies: 63
Views: 42955

features

Hi,

sure I'll add new features... but there is still a very long way :-)
My first aim is being able to connect to a hub, and do some basic functions.

Meanwhile, you can submit your suggestions here.

Who
by Who
2003-05-05 02:39
Forum: Protocol Alley
Topic: porting DC++ to Linux?
Replies: 63
Views: 42955

Starting port...

ok, I'm requesting a sourceforge project. Things will go slowly first as my laptop is still repairing, but I think it'll be interesting. I think I'll redo not only the GUI part, but also some of the client one, because I want to fully use the wx library. This means using wxSockets, wxTimer and wxThr...
by Who
2003-04-07 03:01
Forum: Protocol Alley
Topic: porting DC++ to Linux?
Replies: 63
Views: 42955

To distiller...

mmm... we'll keep this suggestions in mind... but new features should be left for regular DC++ team. I mean we all love segmented dl and so, but first I think there is some work to be done with the buffered sockets problem. You know, it's impossible that I get 200KB from web or other P2P clients and...
by Who
2003-03-28 06:01
Forum: Protocol Alley
Topic: porting DC++ to Linux?
Replies: 63
Views: 42955

Porting to wxWindows

I'm currently comparing wxWindows GUI capabilities to those DC++ needs. I will prepare a document with the conclusions. We can start from Windows, and after it works, we'll tackle the Linux version. So it's about rebuilding DC++ GUI. What ideas have you got about the GUI? (you say there are things y...
by Who
2003-03-21 10:13
Forum: Protocol Alley
Topic: porting DC++ to Linux?
Replies: 63
Views: 42955

read my previous post pal!

I said before I'm trying to port DC++ GUI to wxWindows, so if you wanna join... If you don't, just allow me to give you at least some advice: you will have a very hard time to start on your own if you don't have C++ or Win32-Linux porting experience, though. :(
by Who
2003-03-21 03:53
Forum: Protocol Alley
Topic: porting DC++ to Linux?
Replies: 63
Views: 42955

oh I forgot...

>The client code compiles cleanly under linux compiles != works I've seen some Windowish stuff lately in DC++ client lib, thank god it's into #define WIN32 blocks, but some features may not have it's *nix counterpart. Nothing to worry much about in any case... now porting the GUI seems much more com...
by Who
2003-03-21 02:56
Forum: Protocol Alley
Topic: porting DC++ to Linux?
Replies: 63
Views: 42955

Porting it...

Well I was thinking of porting all the GUI to wxWindows myself, so I guess that could be a great step because it would also compile for Linux (and Mac). So if someone wants to join... :D
by Who
2003-02-13 03:50
Forum: Protocol Alley
Topic: DC++ 0.231 crash when opening Finished Dl frame
Replies: 2
Views: 2139

about reporting

I guessed so, all I wanted to know is where I can follow those threads. Now you said sf bugtracker, I'll follow. Thanks
by Who
2003-02-11 04:34
Forum: Protocol Alley
Topic: DC++ 0.231 crash when opening Finished Dl frame
Replies: 2
Views: 2139

DC++ 0.231 crash when opening Finished Dl frame

at FinishedFrame.h, addEntry function: the call setDirty(); at the end of the function makes DC++ crash, because MDITabChildWindowImpl<FinishedFrame> onCreate has not been called, and Tab has not been added yet. BTW dunno if this is the proper place to report this, if you know a more suitable place,...
by Who
2003-02-07 06:00
Forum: Protocol Alley
Topic: Bug in CryptoManager.cpp?
Replies: 3
Views: 2327

Bug in CryptoManager.cpp?

Hi I came across this: when calling CryptoManager::decodeBZ2, with a partially downloaded BZ2 file, it may enter a endless loop in: while((err = BZ2_bzDecompress(&bs)) == BZ_OK) { os.append(buf, bufsize-bs.avail_out); bs.avail_out = bufsize; bs.next_out = buf; } because it doesn't check for BZ_UNEXP...