diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2015-01-27 15:41:54 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2015-01-27 15:41:54 +0000 |
commit | 603ce4fe3cb23d30b2e3ae6d81bd8766ffa41cee (patch) | |
tree | fd3efd78c022209af8cd586e8d144820973a58ff /usr/src/uts/common/sys/socket.h | |
parent | f5fd44b292236c144f9e631f155df77d3e9372c8 (diff) | |
download | illumos-joyent-603ce4fe3cb23d30b2e3ae6d81bd8766ffa41cee.tar.gz |
OS-3752 Increase IOV_MAX to at least 1024
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 bbe2121d0e..f5864db7d3 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 */ @@ -425,6 +426,7 @@ struct msghdr32 { #define MSG_NOTIFICATION 0x100 /* Notification, not data */ #define MSG_XPG4_2 0x8000 /* Private: XPG4.2 flag */ +/* Obsolete but kept for compilation compatability. Use IOV_MAX. */ #define MSG_MAXIOVLEN 16 #ifdef _KERNEL |