Re: Arachne's FTP uploads = OK, but... FTP-log

2003-07-10 Thread Michal H. Tyc
On Fri, 11 Jul 2003 01:27:25 +00, Bastiaan Edelman, PA3FFZ wrote: >> Can you connect to your provider's FTP server with Windows' >> FTP.EXE command-line program (it should be included in all > Never tried it and i did not know it is present in Win95. There is also PING, TELNET (this one opens a

Re: Arachne's FTP uploads = OK, but...

2003-07-10 Thread José Antonio Pineda Figueroa
Hey guys... please, stop these personal-like messages going thru the entire Arachne mailing list... this kind of satirical/ joking/ humorous mails would be perfectly OK **IF** the number of messages I received through arachne's list would be less than 20 a day or so... actually it's about 40+ a

Re: Arachne's FTP uploads = OK, but... FTP-log

2003-07-10 Thread Bastiaan Edelman, PA3FFZ
On Thu, 10 Jul 2003 18:50:58 +0200, Michal H. Tyc wrote: > On Thu, 10 Jul 2003 15:01:07 +00, Bastiaan Edelman, PA3FFZ wrote: >> Before the numbers there is mostly not a "space". See >> the remarks at the end of the attached ftp-log. > Your FTP log shows all bytes transmitted by your modem, > inc

Re: Arachne's FTP uploads = OK, but... FTP-log

2003-07-10 Thread Michal H. Tyc
On Thu, 10 Jul 2003 15:01:07 +00, Bastiaan Edelman, PA3FFZ wrote: > Before the numbers there is mostly not a "space". See > the remarks at the end of the attached ftp-log. Your FTP log shows all bytes transmitted by your modem, including the stuff needed to establish the modem connection with you

Re: Arachne's FTP uploads = OK, but... FTP-log

2003-07-10 Thread Bastiaan Edelman, PA3FFZ
Before the numbers there is mostly not a "space". See the remarks at the end of the attached ftp-log. Bastiaan On Thu, 10 Jul 2003 13:26:43 +0200, Michal H. Tyc wrote: > On Thu, 10 Jul 2003 12:05:52 +0200, I wrote: >> threedigits = isdigit(buffer[0]) && isdigit(buffer[0]) >> && i

Re: Arachne's FTP uploads = OK, but...

2003-07-10 Thread Michal H. Tyc
On Thu, 10 Jul 2003 12:05:52 +0200, I wrote: > threedigits = isdigit(buffer[0]) && isdigit(buffer[0]) > && isdigit(buffer[0]); Should be, of course, threedigits = isdigit(buffer[0]) && isdigit(buffer[1]) && isdigit(buffer[2]); Cut'n'paste shouldn't free us from thi

Re: Arachne's FTP uploads = OK, but...

2003-07-10 Thread Michal H. Tyc
After a while of thinking, I suspect that the a better algorithm would be: int threedigits(char *buffer) { threedigits = isdigit(buffer[0]) && isdigit(buffer[0]) && isdigit(buffer[0]); } //... while(TRUE) { get_next_answer(buffer); if (buffer[0] == '#') rem

Re: Arachne's FTP uploads = OK, but...

2003-07-10 Thread Michal H. Tyc
On Wed, 09 Jul 2003 21:47:49 -0400, Glenn McCorkle THERE SHOULD BE SPACE BEFORE '234'. > Hold off for a while. > After seeing what Michal wrote. > It looks like I need to ammend my 'fix' > __ > On Wed, 09 Jul 2003 18:42:38 +02