home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mlddc320.zip / secure.h < prev   
C/C++ Source or Header  |  1997-07-31  |  210b  |  12 lines

  1. #include <ssl.h>
  2.    
  3. void ssl_init( void );
  4. SSL *ssl_connect( const char *hostname, const int port );
  5.  
  6. /* MLDDC -> */
  7.  
  8. #define read(s,b,l)  SSL_read(s,b,l)
  9. #define write(s,b,l) SSL_write(s,b,l)
  10.  
  11. /* <- MLDDC */
  12.