~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/drizzle_com.h

  • Committer: Brian Aker
  • Date: 2008-07-16 03:31:49 UTC
  • Revision ID: brian@tangent.org-20080716033149-1z4kyxcy1pgo8ih5
Removed thd alarm around socket, we now use timeouts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
227
227
#define MAX_BLOB_WIDTH          16777216        /* Default width for blob */
228
228
 
229
229
typedef struct st_net {
230
 
#if !defined(CHECK_EMBEDDED_DIFFERENCES) || !defined(EMBEDDED_LIBRARY)
231
230
  Vio *vio;
232
231
  unsigned char *buff,*buff_end,*write_pos,*read_pos;
233
232
  my_socket fd;                                 /* For Perl DBI/dbd */
239
238
  unsigned long remain_in_buf,length, buf_length, where_b;
240
239
  unsigned long max_packet,max_packet_size;
241
240
  unsigned int pkt_nr,compress_pkt_nr;
242
 
  unsigned int write_timeout, read_timeout, retry_count;
 
241
  unsigned int write_timeout;
 
242
  unsigned int read_timeout;
 
243
  unsigned int retry_count;
243
244
  int fcntl;
244
245
  unsigned int *return_status;
245
246
  unsigned char reading_or_writing;
246
247
  char save_char;
247
 
  my_bool unused1; /* Please remove with the next incompatible ABI change. */
248
 
  my_bool unused2; /* Please remove with the next incompatible ABI change */
249
248
  my_bool compress;
250
 
  my_bool unused3; /* Please remove with the next incompatible ABI change. */
251
249
  /*
252
250
    Pointer to query object in query cache, do not equal NULL (0) for
253
251
    queries in cache that have not stored its results yet
254
252
  */
255
 
#endif
256
253
  /*
257
254
    Unused, please remove with the next incompatible ABI change.
258
255
  */
259
256
  unsigned char *unused;
260
257
  unsigned int last_errno;
261
258
  unsigned char error; 
262
 
  my_bool unused4; /* Please remove with the next incompatible ABI change. */
263
 
  my_bool unused5; /* Please remove with the next incompatible ABI change. */
264
259
  /** Client library error message buffer. Actually belongs to struct MYSQL. */
265
260
  char last_error[MYSQL_ERRMSG_SIZE];
266
261
  /** Client library sqlstate buffer. Set along with the error message. */