mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
Set IOV_MAX for IRIX
This commit is contained in:
parent
ad1e9b7e3c
commit
ec993dbdbc
10
netio.c
10
netio.c
@ -293,13 +293,15 @@ void packet_queue_to_iovec(const struct Queue *queue, struct iovec *iov, unsigne
|
||||
int len;
|
||||
buffer *writebuf;
|
||||
|
||||
#ifndef IOV_MAX
|
||||
#if defined(__CYGWIN__) && !defined(UIO_MAXIOV)
|
||||
#ifndef IOV_MAX
|
||||
#if defined(__CYGWIN__) && !defined(UIO_MAXIOV)
|
||||
#define IOV_MAX 1024
|
||||
#else
|
||||
#elif defined(__sgi)
|
||||
#define IOV_MAX 512
|
||||
#else
|
||||
#define IOV_MAX UIO_MAXIOV
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
*iov_count = MIN(MIN(queue->count, IOV_MAX), *iov_count);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user