1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

violite.h Don't define st_vio if EMBEDDED_LIBRARY.

This commit is contained in:
tim@hundin.mysql.fi
2001-06-05 04:15:13 +03:00
parent 2326c7e448
commit 403b96c54d
2 changed files with 3 additions and 5 deletions

View File

@ -143,10 +143,6 @@ extern "C" {
void vio_ssl_delete(Vio* vio);
#ifdef EMBEDDED_LIBRARY
void vio_reset(Vio *vio);
#endif
int vio_ssl_read(Vio* vio,gptr buf, int size);
int vio_ssl_write(Vio* vio,const gptr buf,int size);
int vio_ssl_blocking(Vio* vio,my_bool onoff);
@ -220,6 +216,7 @@ Vio* new_VioSSL(struct st_VioSSLAcceptorFd* fd, Vio* sd,int state);
#define HANDLE void *
#endif
#ifndef EMBEDDED_LIBRARY
/* This structure is for every connection on both sides */
struct st_vio
{
@ -254,5 +251,5 @@ struct st_vio
#endif /* HAVE_OPENSSL */
#endif /* HAVE_VIO */
};
#endif /* EMBEDDED_LIBRARY */