summaryrefslogtreecommitdiff
path: root/usr/src/lib/libnsl/rpc/rpc_td.c
diff options
context:
space:
mode:
authorstevel@tonic-gate <none@none>2005-06-14 00:00:00 -0700
committerstevel@tonic-gate <none@none>2005-06-14 00:00:00 -0700
commit7c478bd95313f5f23a4c958a745db2134aa03244 (patch)
treec871e58545497667cbb4b0a4f2daf204743e1fe7 /usr/src/lib/libnsl/rpc/rpc_td.c
downloadillumos-gate-7c478bd95313f5f23a4c958a745db2134aa03244.tar.gz
OpenSolaris Launch
Diffstat (limited to 'usr/src/lib/libnsl/rpc/rpc_td.c')
-rw-r--r--usr/src/lib/libnsl/rpc/rpc_td.c103
1 files changed, 103 insertions, 0 deletions
diff --git a/usr/src/lib/libnsl/rpc/rpc_td.c b/usr/src/lib/libnsl/rpc/rpc_td.c
new file mode 100644
index 0000000000..63dace7e79
--- /dev/null
+++ b/usr/src/lib/libnsl/rpc/rpc_td.c
@@ -0,0 +1,103 @@
+/*
+ * CDDL HEADER START
+ *
+ * The contents of this file are subject to the terms of the
+ * Common Development and Distribution License, Version 1.0 only
+ * (the "License"). You may not use this file except in compliance
+ * with the License.
+ *
+ * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+ * or http://www.opensolaris.org/os/licensing.
+ * See the License for the specific language governing permissions
+ * and limitations under the License.
+ *
+ * When distributing Covered Code, include this CDDL HEADER in each
+ * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+ * If applicable, add the following below this CDDL HEADER, with the
+ * fields enclosed by brackets "[]" replaced with your own identifying
+ * information: Portions Copyright [yyyy] [name of copyright owner]
+ *
+ * CDDL HEADER END
+ */
+/*
+ * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
+ * Use is subject to license terms.
+ */
+
+#pragma ident "%Z%%M% %I% %E% SMI"
+
+#if !defined(lint) && defined(SCCSIDS)
+static char sccsid[] = "@(#)rpc_td.c 1.32 89/03/16 Copyr 1988 Sun Micro";
+#endif
+
+#include "mt.h"
+#include "rpc_mt.h"
+#include <stdio.h>
+#include <rpc/rpc.h>
+#include <rpc/trace.h>
+#include <errno.h>
+#include <tiuser.h>
+#include <string.h>
+#include <stropts.h>
+#include <netinet/tcp.h>
+#include <stdlib.h>
+
+#define MAXOPTSIZE 64
+
+int
+__td_setnodelay(fd)
+ int fd;
+{
+ int rval = 0;
+ static mutex_t td_opt_lock = DEFAULTMUTEX;
+ static struct t_optmgmt t_optreq, t_optret;
+ int state;
+
+
+ /* VARIABLES PROTECTED BY td_opt_lock: t_optreq, t_optret */
+
+ trace2(TR__td_setnodelay, 0, fd);
+
+ if ((state = t_getstate(fd)) == -1)
+ return (-1);
+
+ mutex_lock(&td_opt_lock);
+ if ((state == T_IDLE) && (t_optreq.flags != T_NEGOTIATE)) {
+ int i = 1;
+ struct opthdr *opt;
+
+ t_optreq.flags = T_NEGOTIATE;
+ t_optreq.opt.maxlen = MAXOPTSIZE;
+ t_optreq.opt.buf = (char *)malloc(MAXOPTSIZE);
+ if (t_optreq.opt.buf == NULL) {
+ mutex_unlock(&td_opt_lock);
+ t_errno = TSYSERR;
+ return (-1);
+ }
+ opt = (struct opthdr *)(t_optreq.opt.buf);
+ opt->name = TCP_NODELAY;
+ opt->len = 4;
+ opt->level = IPPROTO_TCP;
+ (void) memcpy((caddr_t)(t_optreq.opt.buf +
+ sizeof (struct opthdr)), &i, sizeof (int));
+ t_optreq.opt.len = (int)(sizeof (struct opthdr) +
+ sizeof (int));
+
+ t_optret.opt.maxlen = MAXOPTSIZE;
+ t_optret.opt.len = 0;
+ t_optret.opt.buf = (char *)malloc(MAXOPTSIZE);
+ if (t_optret.opt.buf == NULL) {
+ mutex_unlock(&td_opt_lock);
+ free(t_optreq.opt.buf);
+ t_errno = TSYSERR;
+ return (-1);
+ }
+ }
+
+ if (state == T_IDLE)
+ rval = t_optmgmt(fd, &t_optreq, &t_optret);
+
+ mutex_unlock(&td_opt_lock);
+ trace2(TR__td_setnodelay, 1, fd);
+ return (rval);
+}