~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/vio_priv.h

  • Committer: Brian Aker
  • Date: 2008-07-02 15:36:57 UTC
  • mfrom: (40.1.1 drizzle)
  • Revision ID: brian@tangent.org-20080702153657-nvx7sm2goic04ite
Mark's merge to drop SSL defines 

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 */