ssl.h 220 B

1234567891011121314
  1. /*
  2. * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __SSL_H__
  6. #define __SSL_H__
  7. extern int ssl_read(int fd, int line);
  8. extern void ssl_receive_char(int line, char ch);
  9. #endif