Search found 310 matches

by PseudonympH
2006-12-12 13:37
Forum: adchpp general
Topic: motd and adding new commands
Replies: 4
Views: 4398

Lua also supports WYSIWYG strings using [[ ]] syntax: http://www.lua.org/manual/5.1/manual.html#2.1
[[
Like this...
This will be on a new line
]]

This might be better if you want to be able to visualize formatting.
by PseudonympH
2006-10-09 20:20
Forum: Hubs and scripts
Topic: "Not able to establish a connection..."
Replies: 5
Views: 6732

Wireshark (formerly Ethereal) is a program that allows you to see all the packets sent to/from the computer it's running on.
by PseudonympH
2006-10-02 16:23
Forum: Off Topic
Topic: Looking for a gig?
Replies: 5
Views: 4576

Apparently, it's [email protected] ;)
by PseudonympH
2006-10-02 16:21
Forum: Hubs and scripts
Topic: Just set up a hub and have some issues
Replies: 4
Views: 4009

Without direct connections between the houses, all traffic between them must go out the normal internet line. It is possible to set things up so that external traffic goes out each house's cable line, and traffic between the houses goes over the ethernet cable you would run between them. However, yo...
by PseudonympH
2006-09-19 23:30
Forum: Hubs and scripts
Topic: setting up dc++ hub
Replies: 17
Views: 16155

For the love of all that is good and holy, use some sentences!
by PseudonympH
2006-09-19 23:19
Forum: Protocol Alley
Topic: $HubIsFull
Replies: 4
Views: 4177

Because the protocol is reverse-engineered and horribly thought out. Why not develop for ADC instead?
by PseudonympH
2006-09-12 16:53
Forum: Proposals
Topic: Limiting access to drives.
Replies: 9
Views: 6968

Often, LANs are connected to the greater internet and therefore constitute a part of it. Most college campus networks, for example.
by PseudonympH
2006-09-09 13:38
Forum: Other Direct Connect tools
Topic: UDP based filesharing ?
Replies: 4
Views: 3713

Yes, reinventing the wheel should be avoided, which is why you should use SCTP if you want reliable datagrams. TCP was designed to back off in saturated networks so that all hosts get their fair share. Reimplementing it over UDP is silly. The library you describe is designed the way it is to prevent...
by PseudonympH
2006-09-05 00:10
Forum: Other Direct Connect tools
Topic: Mac DC++ and Tags
Replies: 14
Views: 10205

It's pretty sad that Shakespeer has to identify itself as DC++ to get accepted into hubs...
by PseudonympH
2006-09-05 00:02
Forum: adchpp general
Topic: Installing boost
Replies: 18
Views: 11902

IIRC, it creates a build directory, and the adchpp executable is in a subdirectory of that. Really didn't take that long to figure out; use find if you have to.
by PseudonympH
2006-08-29 00:01
Forum: Programmer's Help
Topic: Stripping myInfo in DCH++
Replies: 8
Views: 7887

It can in theory, but I don't know enough about the plugin API to know what it allows.
by PseudonympH
2006-08-23 14:15
Forum: Hubs and scripts
Topic: Hub on Home Connection
Replies: 6
Views: 5585

The rough estimate is (upload speed in kilobits) = (users/20)^2... so about 500-ish
by PseudonympH
2006-08-23 00:51
Forum: Hubs and scripts
Topic: Hub on Home Connection
Replies: 6
Views: 5585

With 5-20 users, you could probably use cups and a string as your internet connection. ;)
by PseudonympH
2006-08-14 23:51
Forum: Protocol Alley
Topic: SUP vs. INF SU
Replies: 4
Views: 4081

The SUP command is connection-local, so it only pertains to how messages are sent. This includes features like ZLIF/ZLIG and encryption. The SU field is for which messages are sent, and is therefore what F-type messages use. In this way, message dispatching logic can be separated from the logic to s...
by PseudonympH
2006-08-12 20:44
Forum: adchpp general
Topic: Compile error in swig files on Linux
Replies: 11
Views: 8524

Get what? Swig I got through apt-get; ADCH++ is available via the SVN at http://sourceforge.net/projects/adchpp
by PseudonympH
2006-08-12 19:59
Forum: Proposals
Topic: Cycle through downloads
Replies: 10
Views: 7281

Implementing multisource would be much more powerful and cleaner than all the little speed hacks like this. Just hit close connection and it will try to connect to someone else.
by PseudonympH
2006-07-29 11:15
Forum: Hubs and scripts
Topic: SPAMMING
Replies: 7
Views: 5326

See if someone has written an anti-spam script or plugin for your hub software. Remember, Google is your friend.
by PseudonympH
2006-07-22 14:09
Forum: Proposals
Topic: SubDirectory in ADLSearch
Replies: 5
Views: 4461

It could be if you put a well-worded request in the Bugzilla (link at top of page).
by PseudonympH
2006-07-20 19:08
Forum: adchpp general
Topic: adchpp available
Replies: 12
Views: 10490

I take offense to that :P
by PseudonympH
2006-07-20 19:07
Forum: Proposals
Topic: SubDirectory in ADLSearch
Replies: 5
Views: 4461

You can set which directory search results will be put in in the dialog, and have been for quite some time. Wanting subdirectories, however, would be a valid request. Have you tried using '/' or '\' in the directory names? I'm not too familiar with the filelist code, but it's possible it might work.
by PseudonympH
2006-07-20 19:04
Forum: Proposals
Topic: windows mobile 5 version
Replies: 2
Views: 3262

Not likely. Also not likely you'd have enough space or bandwidth to do any serious file transferring.
by PseudonympH
2006-07-18 20:29
Forum: Other Direct Connect tools
Topic: Cant search
Replies: 1
Views: 2639

6.78 is not a valid DC++ version. You must be using fulDC; which we can't really support. Anyway, RTFFAQ: http://dcpp.net/faq/index.php?action=ar ... artlang=en
by PseudonympH
2006-07-15 18:03
Forum: Protocol Alley
Topic: Split: Passives and SR's
Replies: 27
Views: 15558

Of course, then ops will try to download some files, and kick you for them not being able to download from you. I don't think we can win here.
by PseudonympH
2006-07-14 18:45
Forum: Programmer's Help
Topic: Stripping myInfo in DCH++
Replies: 8
Views: 7887

u->setMyInfo(aLine);

aLine is never modified to represent the MyINFO without the description. You'll need to do an aLine.erase() when you find the point the description is at.
by PseudonympH
2006-07-13 22:39
Forum: Programmer's Help
Topic: Stripping myInfo in DCH++
Replies: 8
Views: 7887

From a first pass, you're not actually modifying the MyINFO string that it passed on, only the internal representation. So, the internal calls will work as you want them, and it will work if it has to manually rebuild the myinfo string, but nobody will actually see the changes.
by PseudonympH
2006-07-04 14:38
Forum: Hubs and scripts
Topic: users not connecting to my hub
Replies: 4
Views: 3370

Therefore, the answer to TPO's question is that you don't know, which doesn't even begin to let us troubleshoot. Try to have someone you know connect to your hub; hell, I'll do it if you post or PM the address.
by PseudonympH
2006-06-30 22:45
Forum: Hubs and scripts
Topic: Can someon please help
Replies: 22
Views: 13071

What does it matter that the IP is changing? As long as e.g. mycoolhub.no-ip.com points to your machine, people can always access it.
by PseudonympH
2006-06-19 20:19
Forum: Other Direct Connect tools
Topic: Help with active mode [split]
Replies: 4
Views: 4472

You might want to try entering the public IP under "bind address" in advanced settings. Also, upgrade to .691; we can't really support a year old version with all the code changes since then.
by PseudonympH
2006-06-15 19:47
Forum: DCH++ General
Topic: odd connection problem
Replies: 4
Views: 4948

Verlihub is pretty much the standard high-user *nix hub software.
by PseudonympH
2006-06-13 21:04
Forum: Protocol Alley
Topic: Client <-> protocol questions
Replies: 33
Views: 23988

And the .DcLst format is deprecated (and even unsupported in the newest version) in favor of the more flexible and standard .xml.bz2 ones.
by PseudonympH
2006-06-13 20:49
Forum: Proposals
Topic: Ability to view file info prior to downloading
Replies: 12
Views: 7129

This is not possible under the NMDC protocol, due to the rigidity of the search result format. Under ADC, it's perfectly possible, but doing it for each and every media file type would result in a lot of code bloat that arne (the creator of DC++) would most likely find unacceptable.
by PseudonympH
2006-06-12 19:12
Forum: Other Direct Connect tools
Topic: Problem with "Client too old, not supported"
Replies: 2
Views: 2448

That is not a DC++ error. Are you using fulDC, or one of its derivatives?
by PseudonympH
2006-06-12 18:48
Forum: Proposals
Topic: ADL Search Option
Replies: 2
Views: 2580

Specialized operator functions such as this do not belong in stock DC++. It's much better for those who need these kinds of things to use a mod.
by PseudonympH
2006-06-08 21:28
Forum: Developer's resort
Topic: down to zero hubs
Replies: 21
Views: 10099

adc://pseudo.hopto.org:9001 might not be .691-friendly, if it has the new PAS encoding...
by PseudonympH
2006-06-07 19:59
Forum: Programmer's Help
Topic: GeoIpCountryWhois.csv - Add one string.
Replies: 16
Views: 9779

4 character abbreviations are not much better than 2 character ones :)
by PseudonympH
2006-05-29 14:03
Forum: Hubs and scripts
Topic: Same Dorm Different Default Gateway
Replies: 3
Views: 3717

It's entirely possible the school is blocking incoming connections at each gateway. Usually, I only see them block connections originating outside the school; you might be unlucky. You should call the school's helpdesk and ask. If they're going to be edgy about DC hubs, say you're trying to set up a...
by PseudonympH
2006-05-23 19:42
Forum: Proposals
Topic: The search screen
Replies: 4
Views: 3421

The code was originally BigMuscle's, IIRC. But I think it was said to be horribly hackish, and probably wouldn't get accepted anyway.
by PseudonympH
2006-04-27 20:17
Forum: Protocol Alley
Topic: ADC Handshake
Replies: 8
Views: 7438

Because every good RFC protocol has the client speak first. Having the server speak first is kind of dumb.
by PseudonympH
2006-04-14 21:21
Forum: Off Topic
Topic: my strongDC 0.6.7.0 crashes very very often
Replies: 2
Views: 3439

The crash happens in vlsp.dll, which is part of your wireless networking software (Google it).
by PseudonympH
2006-04-12 19:35
Forum: Proposals
Topic: Proposal, mainly regarding search interval
Replies: 1
Views: 1890

The messages about the search interval are sent as normal chat messages. Therefore, acting on them would require parsing chat messages, which can result in false positives and false negatives, as the formatting for the message can be arbitrarily chosen by the hub.
by PseudonympH
2006-04-09 16:39
Forum: Proposals
Topic: Male/Female
Replies: 8
Views: 4931

I usually assume everyone is male until told otherwise. This is the internet, after all.
by PseudonympH
2006-03-29 15:00
Forum: Proposals
Topic: Sharing Profiles
Replies: 25
Views: 14506

Well, probably not including those that compile it themselves. :)
by PseudonympH
2006-03-27 13:13
Forum: Programmer's Help
Topic: Basic Compile help!
Replies: 11
Views: 8222

His mention of "essential addons" and ./bootstrap makes it sound suspiciously like he actually is talking about DCH++....
by PseudonympH
2006-03-24 19:01
Forum: Protocol Alley
Topic: ADC Clients and Hubs
Replies: 3
Views: 4047

The Wiki would be the place for it, yes.
by PseudonympH
2006-03-24 18:56
Forum: Hubs and scripts
Topic: Prevent leeching on LAN
Replies: 2
Views: 2322

You cannot control download amounts from the hub. You can, depending on hub software, prevent them from initiating connections for a certain period of time after connecting. YnHub doesn't have any scripting support, so you won't be able to do anything on there. Otherwise, it's hubsoft-specific.
by PseudonympH
2006-03-23 22:29
Forum: Protocol Alley
Topic: Errors on connect
Replies: 9
Views: 8381

If the HSUP message is well-formed, but the hub cannot let the client join for some other reason (hub full...), sending a STA makes sense. However, sending it when there is a parse error doesn't.
by PseudonympH
2006-03-23 22:22
Forum: Protocol Alley
Topic: ADC private message
Replies: 2
Views: 3171

I'd say that's a bug :)
by PseudonympH
2006-03-23 22:21
Forum: Protocol Alley
Topic: ADC 0.10
Replies: 9
Views: 15587

The pseudo.hopto.org hub should be running 0.10 within a few hours. In the meantime, there's a 0.10 one running on port 8001, but it'll probably be up and down for a while.
by PseudonympH
2006-03-20 15:33
Forum: Hubs and scripts
Topic: Multiple People Hosting the Same HUB
Replies: 2
Views: 2485

No, it's not really possible. The project I'm working on aims to develop a decentralized hub, but it would still require the servers to stay up most of the time. Why can't you leave the hub running all the time? The best solution is probably to find someone who has a Linux server and have them run V...
by PseudonympH
2006-03-20 15:06
Forum: Programmer's Help
Topic: Basic Compile help!
Replies: 11
Views: 8222

You distribution should also have packages for them. It might also be possible to combine aclocal/automake/autoconf into just 'autoreconf'.