home *** CD-ROM | disk | FTP | other *** search
/ Programming with VisualAge for Java / IBMVJAVA.ISO / icswin95 / httpdw32.z / minissl.h < prev    next >
C/C++ Source or Header  |  1997-04-07  |  849b  |  26 lines

  1. /*
  2.  * Copyright (c) 1994, 1995.  Netscape Communications Corporation.  All
  3.  * rights reserved.
  4.  * 
  5.  * Use of this software is governed by the terms of the license agreement for
  6.  * the Netscape Communications or Netscape Comemrce Server between the
  7.  * parties.
  8.  */
  9.  
  10.  
  11. /* ------------------------------------------------------------------------ */
  12.  
  13.  
  14.  
  15. /* Prototypes for SSL I/O functions */
  16. extern int SSL_Close(int);
  17. extern int SSL_Socket(int, int, int);
  18. extern int SSL_GetSockOpt(int, int, int, void *, int *);
  19. extern int SSL_SetSockOpt(int, int, int, const void *, int);
  20. extern int SSL_Bind(int, const void *, int);
  21. extern int SSL_Listen(int, int);
  22. extern int SSL_Accept(int, void *, int *);
  23. extern int SSL_Read(int, void *, int);
  24. extern int SSL_Write(int, const void *, int);
  25. extern int SSL_GetPeerName(int, void *, int *);
  26.