diff options
author | Gary Mills <mills@cc.umanitoba.ca> | 2009-10-26 09:11:24 -0700 |
---|---|---|
committer | Gary Mills <mills@cc.umanitoba.ca> | 2009-10-26 09:11:24 -0700 |
commit | e23de8e200dff2773d80ce69c9f2e745b544b9b1 (patch) | |
tree | dd0795bc7d168dee6055e0efe7c767223a357a99 /usr/src/lib/libinetsvc/common/inetsvc.c | |
parent | 142762cd061b91f325608e9672ad01087687394d (diff) | |
download | illumos-joyent-e23de8e200dff2773d80ce69c9f2e745b544b9b1.tar.gz |
6263835 inetd could use option to set SO_KEEPALIVE
Diffstat (limited to 'usr/src/lib/libinetsvc/common/inetsvc.c')
-rw-r--r-- | usr/src/lib/libinetsvc/common/inetsvc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/lib/libinetsvc/common/inetsvc.c b/usr/src/lib/libinetsvc/common/inetsvc.c index 0d5b341a22..b58557d03f 100644 --- a/usr/src/lib/libinetsvc/common/inetsvc.c +++ b/usr/src/lib/libinetsvc/common/inetsvc.c @@ -19,12 +19,10 @@ * CDDL HEADER END */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * This library contains a set of routines that are shared amongst inetd, * inetadm, inetconv and the formerly internal inetd services. Amongst the @@ -104,6 +102,8 @@ static inetd_prop_t inetd_properties[] = { B_TRUE, IVE_UNSET, NULL, B_FALSE}, {PR_CONNECTION_BACKLOG_NAME, PG_NAME_SERVICE_CONFIG, INET_TYPE_INTEGER, B_TRUE, IVE_UNSET, NULL, B_FALSE}, + {PR_DO_TCP_KEEPALIVE_NAME, PG_NAME_SERVICE_CONFIG, INET_TYPE_BOOLEAN, + B_TRUE, IVE_UNSET, NULL, B_FALSE}, {NULL}, }; |