summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authorrmax <rmax>2009-06-15 16:24:44 (GMT)
committerrmax <rmax>2009-06-15 16:24:44 (GMT)
commit0acb18f87feafbdd931076405ca98c3ce30deca5 (patch)
treebc0c063c253ee9081f495aaf6923eb1b284bd6a1 /unix/tclUnixPort.h
parentc664dc994a0c00a615120c01bda0f55ddd4e428f (diff)
downloadtcl-0acb18f87feafbdd931076405ca98c3ce30deca5.zip
tcl-0acb18f87feafbdd931076405ca98c3ce30deca5.tar.gz
tcl-0acb18f87feafbdd931076405ca98c3ce30deca5.tar.bz2
* unix/tclUnixPort.h: Move all socket-related code from tclUnixChan.c
* unix/tclUnixChan.c: to tclUnixSock.c. * unix/tclUnixSock.c:
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index 4b7d20b..bc387ca 100644
--- a/unix/tclUnixPort.h
+++ b/unix/tclUnixPort.h
@@ -19,7 +19,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixPort.h,v 1.68 2008/09/03 05:43:32 dgp Exp $
+ * RCS: @(#) $Id: tclUnixPort.h,v 1.69 2009/06/15 16:24:45 rmax Exp $
*/
#ifndef _TCLUNIXPORT
@@ -620,5 +620,7 @@ MODULE_SCOPE struct passwd* TclpGetPwUid(uid_t uid);
MODULE_SCOPE struct group* TclpGetGrGid(gid_t gid);
MODULE_SCOPE struct hostent* TclpGetHostByName(const char *name);
MODULE_SCOPE struct hostent* TclpGetHostByAddr(const char *addr, int length, int type);
+MODULE_SCOPE Tcl_Channel TclpMakeTcpClientChannelMode(ClientData tcpSocket, int mode);
+
#endif /* _TCLUNIXPORT */