Search found 427 matches

by Sedulus
2004-08-23 05:55
Forum: Feature Discussion (Archived)
Topic: Multiple Download URLS
Replies: 5
Views: 3559

you're missing my list,
now I'm offended ;)
by Sedulus
2004-08-20 02:25
Forum: Hubs and scripts
Topic: how to build up a new server?
Replies: 1
Views: 1535

Image
by Sedulus
2004-08-18 20:47
Forum: Other Direct Connect tools
Topic: What is possible with Lua Scripts?
Replies: 13
Views: 6809

Re: What is possible with Lua Scripts?

I have run in to some what of a problem The hub i would like to use BCDC++ clames that the client is bad for lua scripting among a few other reasons i personly have no problem with the features that were hacked in but why is this lua scripting frowned appawn and what is the extent of its possiblies...
by Sedulus
2004-08-18 20:37
Forum: Programmer's Help
Topic: CVS Down?
Replies: 2
Views: 2085

or. knowing that arne is away for week or so, one could hang on to their patch a slight bit longer

interactive advice at: dchub://wza.digitalbrains.com:1416
by Sedulus
2004-08-07 12:58
Forum: Feature Discussion (Archived)
Topic: 0.307 don't support Chinese file name
Replies: 64
Views: 19090

such as the trouble of scroll position restoring when switching hub window yes.. that was a harder nut to crack I did this (excerpts from BCDC++ svn 413:414): + MESSAGE_HANDLER(WM_WINDOWPOSCHANGING, onSizeMove) + LRESULT onSizeMove(UINT /*uMsg*/, WPARAM wParam, LPARAM lParam, BOOL& bH andled); - up...
by Sedulus
2004-08-07 12:38
Forum: Programmer's Help
Topic: Getting extern IP automatic
Replies: 23
Views: 11554

Twink wrote:i thought dc++ already did this as long as the hubs supported userip2??
a simple grep revealed to me that this is not the case,
BCDC++ has it though (in NmdcHub.cpp)
by Sedulus
2004-08-06 05:36
Forum: Feature Discussion (Archived)
Topic: How about some Segement downloading?!
Replies: 1
Views: 1783

search the forum before starting new threads
by Sedulus
2004-08-04 19:38
Forum: Feature Discussion (Archived)
Topic: Ability to view file lists as text or HTML
Replies: 15
Views: 7169

a simple perl script could do it for you

I just wonder what's wrong with the xml format,
you can ctrl+f it in IE just fine, AFAIK.
what is better about plain text?
by Sedulus
2004-08-04 19:15
Forum: Feature Discussion (Archived)
Topic: 0.307 don't support Chinese file name
Replies: 64
Views: 19090

hm.. it could be wrong that you're using the DC++ CEdit and BCDC++ is using the CRichEdit, and that there somehow is some difference in what values those calls return; in which case your solution is fine. if you could test that it works fine under all circumstances, I think arne would gladly accept ...
by Sedulus
2004-08-03 05:26
Forum: Feature Discussion (Archived)
Topic: 0.307 don't support Chinese file name
Replies: 64
Views: 19090

IIRC, cur+page didn't always work correctly, so in BCDC++ we used: bool HubFrame::scrollbarAtBottom() { if(::IsWindow(ctrlClient.m_hWnd)) { SCROLLBARINFO sbi; sbi.cbSize = sizeof(SCROLLBARINFO); SCROLLINFO si; si.cbSize = sizeof(SCROLLINFO); si.fMask = SIF_POS | SIF_RANGE | SIF_PAGE; ctrlClient.GetS...
by Sedulus
2004-08-02 21:14
Forum: Other Direct Connect tools
Topic: MrToDC++IpGet
Replies: 4
Views: 3026

I'm fond of no useless polls ;)
by Sedulus
2004-08-02 04:10
Forum: Feature Discussion (Archived)
Topic: 0.307 don't support Chinese file name
Replies: 64
Views: 19090

but now your window will always scroll, even when you're reading some page of previously written chat, and that is not desired behaviour
by Sedulus
2004-08-02 03:25
Forum: Feature Discussion (Archived)
Topic: The view as text feature
Replies: 21
Views: 8386

Is the font issue fixed? :) I see no font issue (except on your machine). according to everything I find on the internet, both fonts should be fixed width, with the ANSI font being Courier and the OEM font being Terminal (or at least IBM/cp437) I did however see other fonts in the image? are you us...
by Sedulus
2004-07-31 09:38
Forum: Feature Discussion (Archived)
Topic: Fakeshare, filelist check-up. Requested in dc++ V 0.403
Replies: 10
Views: 5033

I could be wrong, but I think he means that DC++ devs would auto-update his DCDM detection rules.
by Sedulus
2004-07-30 18:00
Forum: Hubs and scripts
Topic: ansii pics
Replies: 7
Views: 4440

ascii art is supposed to be displayed using a monospaced (fixed width) font.

dc++ (and all other clients) use a variable width font, so creating ascii art is not that simple.
by Sedulus
2004-07-30 07:58
Forum: Other Direct Connect tools
Topic: Hubllist problems with BCDC++ 0.403b
Replies: 1
Views: 1888

confirmed
by Sedulus
2004-07-24 07:39
Forum: Feature Discussion (Archived)
Topic: Country Flags
Replies: 9
Views: 4927

bloat alert!

perhaps you're better off contacting one of the makers of extended-flashy-UI-mods,
like PhantomDC++, CZDC++, fulDC, etc..
by Sedulus
2004-07-21 06:21
Forum: Feature Discussion (Archived)
Topic: The view as text feature
Replies: 21
Views: 8386

TheParanoidOne wrote:a Courier type font, as shown in the "incorrect" picture above.
huh?
http://hem.bredband.net/b247083/temp/dc.jpg
that is not courier.. that's some variable width font
by Sedulus
2004-07-21 06:17
Forum: Feature Discussion (Archived)
Topic: The view as text feature
Replies: 21
Views: 8386

TheParanoidOne wrote:Note that the toggle does nothing on either.
did you restart dc++?
by Sedulus
2004-07-21 06:12
Forum: Feature Discussion (Archived)
Topic: The view as text feature
Replies: 21
Views: 8386

this page ( http://msdn.microsoft.com/library/en-us/gdi/fontext_3pbo.asp ) even explicitly states that it should have the IBM charset (those that the NFO's use). OEM_FIXED_FONT Specifies a monospace font based on an OEM character set. For IBM computers and compatibles, the OEM font is based on the I...
by Sedulus
2004-07-21 05:50
Forum: Feature Discussion (Archived)
Topic: The view as text feature
Replies: 21
Views: 8386

that's odd.. relevant code: [2:wza:windows]$ grep monoFont * 2>/dev/null TextFrame.cpp: ctrlPad.SetFont(WinUtil::monoFont); WinUtil.cpp:HFONT WinUtil::monoFont = NULL; WinUtil.cpp: monoFont = (HFONT)::GetStockObject(BOOLSETTING(USE_OEM_MONOFONT)?OEM_FIXED_FONT:ANSI_FIXED_FONT); WinUtil.cpp: ::Delete...
by Sedulus
2004-07-17 04:13
Forum: Hubs and scripts
Topic: Problems with hub connections.
Replies: 9
Views: 5570

... which very likely operates as a router too.

what is your computers IP address? is it 10.*.*.* or 192.168.*.*? (see run -> cmd -> ipconfig). if it is, you'll surely need port forwarding.

does it say anything about forwarding in the NOKIA M5921 ADSL BRIDGE manual?
by Sedulus
2004-07-12 09:36
Forum: Feature Discussion (Archived)
Topic: UPnP support in DC++?
Replies: 3
Views: 2815

I've tried to play some with this. - the application I made failed to run if the .NET framework wasn't installed that's a bad thing - UPnP only works on XP, as far as I know I don't have XP, nor an UPnP capable router, so I can't test much more useful links: Where's the UPnPNAT sample code in C/C++ ...
by Sedulus
2004-06-25 18:43
Forum: Feature Discussion (Archived)
Topic: download only from safe sources
Replies: 12
Views: 4944

woko, if you get that many corrupted files, you should really look at your own hardware and software (running an old version of ZoneAlarm perhaps?).
by Sedulus
2004-06-20 13:10
Forum: Protocol Alley
Topic: 0.402 info(tth leaf transfers and no bz2list support)
Replies: 25
Views: 14924

er.. the option is removed, the functionality is not
it's now enabled wether you like it or not
by Sedulus
2004-06-15 05:19
Forum: Hubs and scripts
Topic: Search Spam
Replies: 3
Views: 2159

you don't want search spam

search spam happens when one client has sent out to many searches in a short period of time.

normally, your hubsoftware has built-in support against "flooding" of any type of message, including the search. so you won't have to worry about it.
by Sedulus
2004-06-08 06:07
Forum: Programmer's Help
Topic: How does tray icon redisplay after explorer crash?
Replies: 1
Views: 1614

in MainFrm it looks like this: trayMessage = RegisterWindowMessage("TaskbarCreated"); MESSAGE_HANDLER(trayMessage, onTray) LRESULT onTray(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) { updateTray(true); return 0; }; a google query for "RegisterWindowMessage(\"TaskbarCreat...
by Sedulus
2004-06-07 21:17
Forum: Feature Discussion (Archived)
Topic: Automatic bug report
Replies: 5
Views: 2540

newer reports look like this: Code: c0000005 Version: 0.401 Major: 5 Minor: 0 Build: 2195 SP: 4 Type: 1 Time: 2004-05-26 16:10:28 TTH: ROP7LIFVHUH7G25BHFEJRLA4NDSRXKP3KWXWHGQ ntdll!0x77F92373: RtlpWaitForCriticalSection ntdll!0x77F922F8: RtlImageDirectoryEntryToData 0x400FEC90: ? DCPlusPlus!0x004836...
by Sedulus
2004-06-07 12:23
Forum: Off Topic
Topic: Hey everyone, I need some advise
Replies: 5
Views: 3637

to reply in style with your post: [19:03:51] <cologic> can someone sift through the massive http://dcplusplus.sourceforge.net/forum/viewtopic.php?t=10725 and see whether it's worthwhile? ;) [19:08:56] <Sedulus> it's non-interesting, as far as my skimming skills tell me [19:09:29] <Sedulus> one of hi...
by Sedulus
2004-06-06 06:03
Forum: Programmer's Help
Topic: how does DC++ to get isp Internet IP in active mode ?
Replies: 10
Views: 5719

hm?

1) DC++ resolves the hostname before sending it out --> ADC clients can still do that. at no point does the hub see a hostname.
2) ADC clients don't need to. by sending the null IP (0.0.0.0) you do a request for your own IP as the hub sees it.
by Sedulus
2004-06-04 06:07
Forum: Feature Discussion (Archived)
Topic: right-click CLEAR
Replies: 3
Views: 2026

why do you so eagerly want your windows cleared?
by Sedulus
2004-06-02 11:28
Forum: Protocol Alley
Topic: Package size?
Replies: 6
Views: 4005

1) check these docs.. they (may) contain some fixes: http://wza.digitalbrains.com/DC/doc/Command_Types_(client_to_client).html 2) transfering in batches does _not_ speed up transfers (see GargoyleMT's "No, in all clients except the multi-source ones, all of the file is requested at the beginning.")....
by Sedulus
2004-05-27 09:28
Forum: Hubs and scripts
Topic: mannual hub address
Replies: 1
Views: 2325

we do not help with specific hubs

check the hublist(s) and search/filter them

topic closed.
by Sedulus
2004-05-20 15:06
Forum: Feature Discussion (Archived)
Topic: Transferring downloads from DC 2.20 to DC++
Replies: 20
Views: 7609

could someone post an example queue file?
personally I'm a bit reluctant to install that piece of adware
by Sedulus
2004-05-20 15:02
Forum: Feature Discussion (Archived)
Topic: Be able to determine to continue waiting for a free slot...
Replies: 10
Views: 4021

not only is there no upload queue, there is no file queue either.. once someone has acquired a slot, he can keep requesting files for all eternity (unless the connection is (un)intentionally broken). of course a file queue could also be implemented.. but this would break compatibility. this approach...
by Sedulus
2004-05-20 14:30
Forum: Feature Discussion (Archived)
Topic: Secure hubs - fail to protect against 0.401
Replies: 19
Views: 6726

w00t, more Hall of Fame material :) Foxp: for you information, that leechblocker script that you are using was created after someone saw it (actually it limited <25GB sharing users from downloading from users with a >25GB share) running in my DCH++ hub. I know, because I've read and posted in that t...
by Sedulus
2004-05-19 06:46
Forum: Feature Discussion (Archived)
Topic: Fakers
Replies: 11
Views: 5040

i_h: it exists already:
the fact that DC++ sends a correct Decoded $Key response to the hubs $Lock enquiry, proves that DC++ is NeoModusDC
by Sedulus
2004-05-18 21:04
Forum: Feature Discussion (Archived)
Topic: Refresh > hashing > refresh
Replies: 6
Views: 3155

PseudonympH wrote:Plus, it's not like typing /refresh twice instead of once is that incredibly hard.
sure.. but he wasn't being nasty about it
it felt like a kind decent feature request to me
by Sedulus
2004-05-18 04:16
Forum: Programmer's Help
Topic: help getting started.
Replies: 3
Views: 2044

installing, here, means nothing more than chucking them into some directory
and adding those directories as include paths (which can be found somewhere in configuration under c++ settings.. or something)
by Sedulus
2004-05-18 03:06
Forum: Protocol Alley
Topic: stupid $MyINFO
Replies: 4
Views: 3358

I had the following conversation with dc++ today --> $Lock abcde Pk=abcde| <-- $Key V0p|$ValidateNick [0.5mb]23lutij64| --> $Hello [0.5mb]23lutij64| <-- $Version 0.261|$GetNickList|$MyINFO $ALL [0.5mb]23lutij64 ALL<++ V:0.261,M:P,H:3/0/0,S:6>$ $DSL$juney1792@hotmail.com$143605480043$||$Search Hub:[0...
by Sedulus
2004-05-14 08:03
Forum: Feature Discussion (Archived)
Topic: repairing files
Replies: 4
Views: 2237

i'm 99% sure its router corrupting data because when i restart it, all works fine but then after some time (10, 20,30,XX hours)starts doing it again.. keep in mind that resetting your router is also a zeitgeber for processes on your machine, because the reset causes a lost connection on your networ...
by Sedulus
2004-05-09 12:58
Forum: Feature Discussion (Archived)
Topic: choose
Replies: 18
Views: 6683

cologic wrote:This will destroy DC, and let fakers run free; it can't be allowed to happen.
yes, but it could be fun ;))
by Sedulus
2004-05-09 12:41
Forum: Feature Discussion (Archived)
Topic: Feature request for dc++ .401
Replies: 5
Views: 2811

won't happen read up on the ClientVersion thread.. it speaks about why client types and versions are not interesting/important, while features are (read: _features_ not _quirks_) furthermore, you may think that the features you want are simple. but they require not only quite a bit of work (implemen...
by Sedulus
2004-04-29 16:29
Forum: Hubs and scripts
Topic: Hub Status on a Website
Replies: 3
Views: 2343

... or alternately the prettier

Code: Select all

function testhub2($addr, $port = 411, $timeout = 2.0) {
    if(!($f = fsockopen($addr, $port, &$errno, &$errstr, $timeout)))
        return false;
    if($buf = fgets($f, 6))
        if($buf == '$Lock ')
            return true;
    return false;
}
by Sedulus
2004-04-29 16:16
Forum: Hubs and scripts
Topic: Hub Status on a Website
Replies: 3
Views: 2343

hm.. I couldn't get socket_select to work :-/ so here is the ugly version.. function testhub($addr, $port = 411, $timeout = 2) { $s = socket_create(AF_INET, SOCK_STREAM, SOL_TCP) or die(socket_strerror(socket_last_error())); socket_set_nonblock($s) or die(socket_strerror(socket_last_error())); @sock...
by Sedulus
2004-04-28 21:41
Forum: Programmer's Help
Topic: weirdness compiling v0.401
Replies: 5
Views: 3020

Code: Select all

[2:wza:client]$ pwd
/home/walter/cvsroot/dcplusplus/client
[0:wza:client]$ grep stringstr * 2>/dev/null
[2:wza:client]$
there are no stringstreams used in stock dc++, and afaik, some option is _disabled_ in the stl that comes with dc++ that would include stringstream directives
by Sedulus
2004-04-26 11:32
Forum: Programmer's Help
Topic: Sharesize conflict
Replies: 9
Views: 4306

try this one in windows/DirectoryListingFrm.cpp

Code: Select all

                string tmp2 = STRING(SIZE) + ": " + Util::formatBytes(total);
;))