Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ftpbench · To develop an open-source FTP benchmark application,

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 57
  • Category: Software
  • Founded: Dec 1, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 198 - 227 of 286   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
198 junkyard@...
sashaoblak Send Email
Nov 13, 2001
11:57 pm
Hello I am unable to compile dkftpbench-0.37 on Solaris. I am getting numerous errors, which I have pasted below. I would very much appreciate any help you...
199 Dan Kegel
dankegel Send Email
Nov 16, 2001
4:52 am
... Hmm. Looks like I need to find a Solaris implementation of getifaddrs(). There are clues at http://www.wcug.wwu.edu/lists/netdev/200002/msg00144.html ...
200 Christopher K. St. John
distributopia Send Email
Nov 16, 2001
3:46 pm
I tried to send Dan a new-improved /dev/poll-like patch, and he made me go try it out on dkftpbench first. That was probably a good thing, because I found...
201 Christopher K. St. John
distributopia Send Email
Nov 16, 2001
3:49 pm
... Argh. That 'because&#39; doesn't make any sense. Coffee, need more coffee. It should still be "at least", though. -cks...
202 Zach Brown
zab@... Send Email
Nov 16, 2001
5:55 pm
... so what did you do differently than /dev/poll, /dev/epoll, queued rt/sigio signals, and bcrl's async poll? there are a host of 'fd interest/event...
203 Christopher K. St. John
distributopia Send Email
Nov 16, 2001
6:43 pm
... Main point was to find out why Linux /dev/poll was affected by the number of idle connections, when in theory, it didn't need to be. Writing /dev/yapoll ...
204 Zach Brown
zab@... Send Email
Nov 16, 2001
7:11 pm
... yes. I'm looking forward to seeing your work, if you feel the need to publish it :) bcrl's code allows this sort of optimization to legacy poll by adding ...
205 sasha oblak
sashaoblak Send Email
Nov 27, 2001
12:20 am
Would you be interested in a Solaris 8 installation CD for Intel or SPARC? It might help testing on Solaris. Sasha ... -- Sasha Oblak 901 San Antonio RD M/D...
206 Dan Kegel
dankegel Send Email
Dec 11, 2001
8:47 pm
CHANGELOG for dkftpbench 0.38 Compiles on Solaris 7 -- getifaddrs.c doesn't do anything there yet, but at least it compiles. You may now override CFLAGS and...
207 Francis little
oggy@... Send Email
Dec 12, 2001
8:32 am
have a look at http://www.acl.lanl.gov/~rminnich/ there is a program to start processes on remote machines called VX. ... CHANGELOG for dkftpbench 0.38 ...
208 Dan Kegel
dankegel Send Email
Dec 12, 2001
10:09 am
Nifty. I'll bookmark that. I don't think it'll do what I need for dkftpbench, but it might be handy for something else sometime. - Dan...
209 sivajothi Send Email Feb 4, 2002
5:28 pm
Hi As part of my masters degree assignment ,i have to design and implement FTP Server and Client and submit that assignment by feb 10th.I am basically java...
210 Shane Kerr
shane@... Send Email
Feb 4, 2002
5:36 pm
... _UNIX Network Programming_ by W. Richard Stevens http://www.kohala.com/start/unpv12e.html Don't leave home without it. Personally I wouldn't want to...
211 Christopher Smith
cbsmith Send Email
Feb 5, 2002
1:00 am
... Actually, assuming you're just writing this in Java, this is a fairly simple assignment. You don't need to do any protocol design, the FTP protocol is...
212 Dan Kegel
dankegel Send Email
Feb 12, 2002
7:20 am
This version ramps up adaptively (thanks to work by Steven Mueller). You can specify how many connections to make in parallel. The default, 1, is...
213 Dan Kegel
dankegel Send Email
Feb 13, 2002
5:26 am
Version 0.40 of dkftpbench comes with Corba support, thanks to a little corbification by Leo. It works with OmniOrb 3 for sure; I tested that by building...
214 Dan Kegel
dankegel Send Email
Feb 15, 2002
5:25 am
OK, I threw together a distributed version of dkftpbench using corba. The idea is you run a copy of CorbaPlatoon_impl on each load machine, and one copy of...
215 shashibg Send Email Feb 26, 2002
8:55 am
I found the millisecond timeout interface in waitForEvent() and waitAndDispatchEvents() to be quite inadequate. I'm using the Poller_kqueue() in NS's emulation...
216 Dan Kegel
dankegel Send Email
Feb 26, 2002
7:03 pm
... Nice to hear Poller is getting some use! Would exposing waitForEvents(struct timespec *) suit your needs better? That would be quite easy to offer in...
217 shashibg Send Email Feb 27, 2002
6:51 pm
... Yes, certainly. Since this is anyway a C++ library, the following might be better. waitForEvents(const struct timespec &) Also, would be possible for you...
218 Shashi Guruprasad
shashibg Send Email
Feb 28, 2002
3:07 am
Hi Dan and Jonathan, Here's a simple program that I hacked up to see if kqueue() can check for /dev/bpf* readiness. It turns out that kqueue() wrongly reports...
219 Dan Kegel
dankegel Send Email
Feb 28, 2002
8:12 am
... Yes, it would. I ought to do that. ... But how on earth do the sources add up to 45MB? Oh, I see, it's a bunch of multi-megabyte data files. Well, what...
220 Dan Kegel
dankegel Send Email
Feb 28, 2002
8:26 am
Sounds like a possible bug in bsd, or a misunderstanding. Either way, best thing is to post your test case to the appropriate *bsd mailing list. Hmm, I see...
221 shashibg Send Email Feb 28, 2002
4:53 pm
... internet ... Yep. These are data files for the validation suite in NS -Shashi...
222 Dan Kegel
dankegel Send Email
Mar 18, 2002
7:13 am
I'm looking for a well-written Java ftp daemon to benchmark. In a quick Google search, I found four candidates: 1. http://www.mycgiserver.com/~ranab/ftp/ Rana...
223 Christopher Smith
cbsmith Send Email
Mar 18, 2002
7:48 am
There aren't a lot of people writing FTP servers out there in Java. :-( I'm surprised noone has one with non-blocking I/O though. --Chris...
224 Christopher Smith
cbsmith Send Email
Mar 18, 2002
7:48 am
There aren't a lot of people writing FTP servers out there in Java. :-( I'm surprised noone has one with non-blocking I/O though. --Chris...
225 zhang_zoe Send Email Apr 4, 2002
10:32 pm
I run "time dkftpbench -hssl-2.cs.unm.edu -n3000 -t180 -b1000 -u? -p? -fglobus.eps -sp" in host where ftp client is running. but i got erro message: "Option...
226 Dan Kegel
dankegel Send Email
Apr 5, 2002
4:44 pm
... The status value of 550 is from the FTP server. It is defined in the FTP RFC as 550 Requested action not taken. File unavailable (e.g., file not found, no...
227 zhang li
zhang_zoe Send Email
Apr 5, 2002
7:53 pm
but four processes are successfully(get the file successfully) before the error pops up. li ... __________________________________________________ Do You...
Messages 198 - 227 of 286   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help