aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/socketvar.h
diff options
context:
space:
mode:
authorDon Lewis <truckman@FreeBSD.org>1998-11-11 10:04:13 +0000
committerDon Lewis <truckman@FreeBSD.org>1998-11-11 10:04:13 +0000
commit831d27a9f56da38cf007714c169d208e7b9739be (patch)
tree2bce7c99fd05ca07a117966c4c41f2f544ef20f3 /sys/sys/socketvar.h
parent21ffb6774a08602e1208977da6c5a652d85d32b6 (diff)
downloadsrc-831d27a9f56da38cf007714c169d208e7b9739be.tar.gz
src-831d27a9f56da38cf007714c169d208e7b9739be.zip
Installed the second patch attached to kern/7899 with some changes suggested
by bde, a few other tweaks to get the patch to apply cleanly again and some improvements to the comments. This change closes some fairly minor security holes associated with F_SETOWN, fixes a few bugs, and removes some limitations that F_SETOWN had on tty devices. For more details, see the description on the PR. Because this patch increases the size of the proc and pgrp structures, it is necessary to re-install the includes and recompile libkvm, the vinum lkm, fstat, gcore, gdb, ipfilter, ps, top, and w. PR: kern/7899 Reviewed by: bde, elvind
Notes
Notes: svn path=/head/; revision=41086
Diffstat (limited to 'sys/sys/socketvar.h')
-rw-r--r--sys/sys/socketvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h
index 3a53ca7777a2..05cd6961b2e4 100644
--- a/sys/sys/socketvar.h
+++ b/sys/sys/socketvar.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)socketvar.h 8.3 (Berkeley) 2/19/95
- * $Id: socketvar.h,v 1.29 1998/08/23 03:07:17 wollman Exp $
+ * $Id: socketvar.h,v 1.30 1998/11/05 14:28:25 dg Exp $
*/
#ifndef _SYS_SOCKETVAR_H_
@@ -77,7 +77,7 @@ struct socket {
short so_qlimit; /* max number queued connections */
short so_timeo; /* connection timeout */
u_short so_error; /* error affecting connection */
- pid_t so_pgid; /* pgid for signals */
+ struct sigio *so_sigio; /* information for SIGIO/SIGURG */
u_long so_oobmark; /* chars to oob mark */
/*
* Variables for socket buffering.