ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro-Mysql/violite.h
(Generate patch)

Comparing Coro-Mysql/violite.h (file contents):
Revision 1.7 by root, Tue Jun 3 03:08:34 2014 UTC vs.
Revision 1.8 by root, Tue Jun 3 03:17:37 2014 UTC

226 char desc[30]; /* String description */ 226 char desc[30]; /* String description */
227 char *read_buffer; /* buffer for vio_read_buff */ 227 char *read_buffer; /* buffer for vio_read_buff */
228 char *read_pos; /* start of unfetched data in the 228 char *read_pos; /* start of unfetched data in the
229 read buffer */ 229 read buffer */
230 char *read_end; /* end of unfetched data */ 230 char *read_end; /* end of unfetched data */
231#if defined(MARIADB_BASE_VERSION)
232 struct mysql_async_context *async_context; /* For non-blocking API */
233 uint read_timeout, write_timeout;
234#endif
231 /* function pointers. They are similar for socket/SSL/whatever */ 235 /* function pointers. They are similar for socket/SSL/whatever */
232 void (*viodelete)(Vio*); 236 void (*viodelete)(Vio*);
233 int (*vioerrno)(Vio*); 237 int (*vioerrno)(Vio*);
234 size_t (*read)(Vio*, unsigned char *, size_t); 238 size_t (*read)(Vio*, unsigned char *, size_t);
235 size_t (*write)(Vio*, const unsigned char *, size_t); 239 size_t (*write)(Vio*, const unsigned char *, size_t);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines