Changeset 1676
- Timestamp:
- 02/20/2007 05:08:32 PM (18 months ago)
- Files:
-
- 1 modified
-
branches/lighttpd-1.4.x/src/network_writev.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.4.x/src/network_writev.c
r1383 r1676 56 56 #elif defined(UIO_MAXIOV) /* Linux x86 (glibc-2.2.5-233) */ 57 57 const size_t max_chunks = UIO_MAXIOV; 58 #elif (defined(__FreeBSD__) && __FreeBSD_version < 500000) /* FreeBSD 4.x */58 #elif (defined(__FreeBSD__) && __FreeBSD_version < 500000) || defined(__DragonFly__) /* FreeBSD 4.x */ 59 59 const size_t max_chunks = 1024; /* UIO_MAXIOV value from sys/uio.h */ 60 60 #else

