Help with subscribing

2005-01-13 Thread Morales Anamaria
Title: Help with subscribing







Hi, 


I need help subscribing to the mail list. I sent two emails to [EMAIL PROTECTED] with the subject subscribe but havent become any response. 

Can somebody please tell me how to subscribe to the mailing list? 


Thanks


PS: Obviously I'm not subscribed, so please cc me on the response. Thanks again





large file support

2005-01-13 Thread Paul Mansfield
http://cvs.sunsite.dk/viewcvs.cgi/wget/NEWS?rev=WGET_1_9_1content-type=text/plain
I was using wget on freebsd to mirror a site with an ISO image of 3.3GB, 
and noticed that it went berserk when I re-ran the wget, and continued 
to download and extend the file!

I checked the news above and it didn't seem to mention large file support.
However, I found this page:
http://www.linuxsecurity.com/content/view/106766/102/
which suggested that someone at Redhat has added large file support, but 
I guess they didn't submit the patch to you.

Paul


large files

2005-01-13 Thread Daniel Stenberg
Hi
I suggest:
That you apply and commit the currently best patch for large files. That is 
probably the one Leonid works/worked on. Isn't that the one Redhat has 
applied?

I suggest that off_t isn't used to store/keep large file sizes, but instead a 
privately typedefed type instead. Named wget_off_t for example.

On linux and most unix-like systems, we can 'typedef off_t wget_off_t' and 
most things will be fine. A strtoll() replacement is needed for some 
platforms. I believe this works fine for VMS too. I could check later.

On systems like Windows, large file support takes some more work, and then the 
wget_off_t is probably best made 'typedef signed __int64 wget_off_t' with MSVC 
(but all libc-calls using wget_off_t will need attention/replacements since 
the windows libc APIs aren't supporting large files).

On Windows with mingw or watcom, the typedef is better made 'typedef long long 
wget_off_t'.

On Windows CE, I believe it works best as 'typedef long wget_off_t'.
On systems without large file support, off_t is most often still present and 
simply just a 32 bit type. Thus, a file-size-as-string-to-number function 
(basicly strtol() or strtoll() depending on the platform) is suitable, to 
convert a string to wget_off_t.

Now, this is only a suggestion meant to kick-start some discussions and 
possibly implementations.

--
 -=- Daniel Stenberg -=- http://daniel.haxx.se -=-
  ech`echo xiun|tr nu oc|sed 'sx\([sx]\)\([xoi]\)xo un\2\1 is xg'`ol