mux 2006-02-11 01:17:04 UTC
FreeBSD projects repository
Modified files:
csup stream.c
Log:
Simplify the code to handle the file access mode in stream_open_file().
Since we have ANDed the flags value with O_ACCMODE, we can just use
the == operator to test f
mux 2006-02-10 23:06:36 UTC
FreeBSD projects repository
Modified files:
csup stream.c
Log:
Handle the fact that any of the O_RDONLY, O_WRONLY and O_RDWR flags may
actually be defined to 0, thus prevent to test for their presence with
a simple binary AND.
mux 2006-02-07 03:31:44 UTC
FreeBSD projects repository
Modified files:
csup stream.c
Log:
Ignore an error in zfilter_fini(). At this point, we can do nothing
about it and it can happen legitimately if we're being disconnected.
Revision ChangesPat
mux 2006-02-01 23:11:47 UTC
FreeBSD projects repository
Modified files:
csup stream.c
Log:
Use Z_DEFAULT_COMPRESSION instead of Z_BEST_SPEED. Since most of the
time internet connections are limited in upload, the main bottleneck
of csup and CVSup is sendi
mux 2006-01-26 21:10:06 UTC
FreeBSD projects repository
Modified files:
csup stream.c
Log:
Cast the next_in and next_out fields of the zlib state to (Bytef *) to
silence a warning seen under Darwin.
Revision ChangesPath
1.46 +4 -4 proje
mux 2006-01-19 01:24:16 UTC
FreeBSD projects repository
Modified files:
csup stream.c stream.h
Log:
- Fix a bug where csup would crash on some systems because the fdata
pointer wasn't being initialized.
- Remember the EOF status of a stream and make it a