home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / tclX6.4c / dist / experimental / tclSocket.h < prev   
Encoding:
C/C++ Source or Header  |  1992-03-29  |  1.3 KB  |  48 lines

  1. /*
  2.  * tclSocket.h --
  3.  *
  4.  * This file documents the exported interface for the Socket
  5.  * routines.
  6.  *---------------------------------------------------------------------------
  7.  * Copyright 1992 Lance Ellinghouse. lance@markv.com
  8.  *
  9.  * Permission to use, copy, modify, and distribute this software and its
  10.  * documentation for any purpose and without fee is hereby granted, provided
  11.  * that the above copyright notice appear in all copies.  Lance Ellinghouse
  12.  * makes no representations about the suitability of this software for any 
  13.  * purpose.  It is provided "as is" without express or implied warranty.
  14.  */
  15.  
  16. /*
  17.  * Version 1.2
  18.  */
  19.  
  20. /*
  21.  *
  22.  * ChangeLog:
  23.  *
  24.  * Version 1.2 (02/27/92) (Sent to markd@sco.com on 03/17/92)
  25.  *    Tcl_SocketCmd() readded due to demand for new naming.
  26.  *    Tcl_SocketDelete() added.
  27.  *
  28.  * Version 1.1 (Posted to Net on 02/26/92)
  29.  *    Tcl_SocketCmd() removed due to new layout of code
  30.  *
  31.  * Version 1.0
  32.  *    Released to general use on UseNet
  33.  *
  34.  */
  35.  
  36. #include "tclExtdInt.h"
  37. #include <sys/socket.h>
  38. #include <netinet/in.h>
  39. #include <arpa/inet.h>
  40. #include <netdb.h>
  41.  
  42.  
  43. int  Tcl_SocketCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int argc, char *argv[]));
  44. void Tcl_SocketDelete _ANSI_ARGS_((ClientData clientData));
  45.  
  46. void Tcl_InitSocket _ANSI_ARGS_((Tcl_Interp *iPtr));
  47.  
  48.