sslslave.h 435 B

1234567891011121314151617
  1. #ifndef VSF_SSLSLAVE_H
  2. #define VSF_SSLSLAVE_H
  3. struct vsf_session;
  4. /* ssl_slave()
  5. * PURPOSE
  6. * An internal function that takes care of running the "SSL slave" process. It
  7. * is needed because the initial SSL handshake state may belong to a different
  8. * process that the process running the FTP protocol.
  9. * PARAMETERS
  10. * p_sess - the session object
  11. */
  12. void ssl_slave(struct vsf_session* p_sess);
  13. #endif /* VSF_SSLSLAVE_H */