ssl.h 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. #ifndef VSF_SSL_H
  2. #define VSF_SSL_H
  3. struct vsf_session;
  4. struct mystr;
  5. int ssl_read(struct vsf_session* p_sess,
  6. void* p_ssl,
  7. char* p_buf,
  8. unsigned int len);
  9. int ssl_peek(struct vsf_session* p_sess,
  10. void* p_ssl,
  11. char* p_buf,
  12. unsigned int len);
  13. int ssl_write(void* p_ssl, const char* p_buf, unsigned int len);
  14. int ssl_write_str(void* p_ssl, const struct mystr* p_str);
  15. int ssl_read_into_str(struct vsf_session* p_sess,
  16. void* p_ssl,
  17. struct mystr* p_str);
  18. void ssl_init(struct vsf_session* p_sess);
  19. int ssl_accept(struct vsf_session* p_sess, int fd);
  20. int ssl_data_close(struct vsf_session* p_sess);
  21. void ssl_comm_channel_init(struct vsf_session* p_sess);
  22. void ssl_comm_channel_set_consumer_context(struct vsf_session* p_sess);
  23. void ssl_comm_channel_set_producer_context(struct vsf_session* p_sess);
  24. void handle_auth(struct vsf_session* p_sess);
  25. void handle_pbsz(struct vsf_session* p_sess);
  26. void handle_prot(struct vsf_session* p_sess);
  27. void ssl_control_handshake(struct vsf_session* p_sess);
  28. void ssl_add_entropy(struct vsf_session* p_sess);
  29. #endif /* VSF_SSL_H */