diff options
author | Bryan Cantrill <bryan@joyent.com> | 2014-10-04 09:02:58 +0000 |
---|---|---|
committer | John Levon <john.levon@joyent.com> | 2020-03-12 02:44:29 -0700 |
commit | 8e9352593f28b1a84101b11e1c6db6aabf187a1c (patch) | |
tree | 6ac7670bd8a584fdf2218ea81b9f3d4245a7c0ac /usr/src/uts/common/sys/socket.h | |
parent | f3e1a610966249cf3c18b6f431eef3fac2ed90e4 (diff) | |
download | illumos-joyent-8e9352593f28b1a84101b11e1c6db6aabf187a1c.tar.gz |
5880 Increase IOV_MAX to at least 1024
Portions contributed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Reviewed by: Andy Fiddaman <andy@omniosce.org>
Reviewed by: Yuri Pankov <ypankov@fastmail.com>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/uts/common/sys/socket.h')
-rw-r--r-- | usr/src/uts/common/sys/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/src/uts/common/sys/socket.h b/usr/src/uts/common/sys/socket.h index 93b0af97e8..30f7367bcd 100644 --- a/usr/src/uts/common/sys/socket.h +++ b/usr/src/uts/common/sys/socket.h @@ -22,6 +22,7 @@ * Copyright 2014 Garrett D'Amore <garrett@damore.org> * * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright 2015, Joyent, Inc. All rights reserved. */ /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */ @@ -429,6 +430,7 @@ struct msghdr32 { /* with left over data */ #define MSG_XPG4_2 0x8000 /* Private: XPG4.2 flag */ +/* Obsolete but kept for compilation compatibility. Use IOV_MAX. */ #define MSG_MAXIOVLEN 16 #ifdef _KERNEL |