~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzlebinlog.cc

  • Committer: Brian Aker
  • Date: 2008-08-10 17:36:50 UTC
  • Revision ID: brian@tangent.org-20080810173650-zuho0mi0zg9s66hi
Final ulong cleanup in clients

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
#define CLIENT_CAPABILITIES  (CLIENT_LONG_PASSWORD | CLIENT_LONG_FLAG | CLIENT_LOCAL_FILES)
59
59
 
60
60
char server_version[SERVER_VERSION_LENGTH];
61
 
ulong server_id = 0;
 
61
uint32_t server_id = 0;
62
62
 
63
63
// needed by net_serv.c
64
 
ulong bytes_sent = 0L, bytes_received = 0L;
65
 
ulong drizzled_net_retry_count = 10L;
66
 
ulong open_files_limit;
 
64
uint32_t bytes_sent = 0L, bytes_received = 0L;
 
65
uint32_t drizzled_net_retry_count = 10L;
 
66
uint32_t open_files_limit;
67
67
uint test_flags = 0;
68
68
static uint opt_protocol= 0;
69
69
static FILE *result_file;
364
364
 
365
365
  for (;;)
366
366
  {
367
 
    ulong packet_len = my_net_read(net);
 
367
    uint32_t packet_len = my_net_read(net);
368
368
    if (packet_len == 0)
369
369
    {
370
370
      if (my_net_write(net, (uchar*) "", 0) || net_flush(net))
1429
1429
 
1430
1430
{
1431
1431
  uchar buf[128];
1432
 
  ulong len;
 
1432
  uint32_t len;
1433
1433
  uint logname_len;
1434
1434
  NET* net;
1435
1435
  my_off_t old_off= start_position_mot;