~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/vio_priv.h

  • Committer: Mark Atwood
  • Date: 2008-07-01 21:25:46 UTC
  • mto: This revision was merged to the branch mainline in revision 45.
  • Revision ID: mark@localhost.localdomain-20080701212546-jzs7ljtwcp2dcmgd
Remove all OpenSSL and all YaSSL code

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
void    vio_ignore_timeout(Vio *vio, uint which, uint timeout);
35
35
void    vio_timeout(Vio *vio,uint which, uint timeout);
36
 
 
37
 
#ifdef HAVE_OPENSSL
38
 
#include "my_net.h"                     /* needed because of struct in_addr */
39
 
 
40
 
size_t  vio_ssl_read(Vio *vio,uchar* buf,       size_t size);
41
 
size_t  vio_ssl_write(Vio *vio,const uchar* buf, size_t size);
42
 
 
43
 
/* When the workday is over... */
44
 
int vio_ssl_close(Vio *vio);
45
 
void vio_ssl_delete(Vio *vio);
46
 
 
47
 
int vio_ssl_blocking(Vio *vio, my_bool set_blocking_mode, my_bool *old_mode);
48
 
 
49
 
#endif /* HAVE_OPENSSL */