Displaying 3 results from an estimated 3 matches for "select_counter".
2006 May 02
0
beta7 imap core, no assert
..."Disconnected: %s", reason);
(gdb) print *client
$4 = {fd_in = 1147761507, fd_out = 1869508197, io = 0x63746564,
input = 0x3a202573, output = 0x0, namespaces = 0x0, mailbox = 0x2a204259,
keywords = {pool = 0x45200000, keywords = {buffer = 0x42414420,
element_size = 1165128303}}, select_counter = 1914726766,
messages_count = 541674817, recent_count = 1344304225,
last_input = 1731862528, last_output = 1111573536, bad_counter = 1165128303,
parser = 0x7220696e, cmd = {client = 0x20494d41, pool = 0x5020636f,
tag = 0x6d6d616e <Address 0x6d6d616e out of bounds>,
name = 0x643...
2006 May 19
4
beta8: core, signal 11
..."Disconnected: %s", reason);
(gdb) print *client
$4 = {fd_in = 1147761507, fd_out = 1869508197, io = 0x63746564,
input = 0x3a202573, output = 0x0, namespaces = 0x0, mailbox = 0x2a204259,
keywords = {pool = 0x45200000, keywords = {buffer = 0x42414420,
element_size = 1165128303}}, select_counter = 1914726766,
messages_count = 541674817, recent_count = 1344304225,
last_input = 1731862528, last_output = 1111573536, bad_counter = 1165128303,
parser = 0x7220696e, cmd = {client = 0x20494d41, pool = 0x5020636f,
tag = 0x6d6d616e <Address 0x6d6d616e out of bounds>,
name = 0x643...
2005 Aug 24
0
verbose imap logging
...ut_remove(to_idle);
diff -ur dovecot-1.0.alpha1.orig/src/imap/client.h dovecot-1.0.alpha1/src/imap/client.h
--- dovecot-1.0.alpha1.orig/src/imap/client.h 2005-08-07 13:39:04.000000000 +0200
+++ dovecot-1.0.alpha1/src/imap/client.h 2005-08-23 10:39:08.000000000 +0200
@@ -40,6 +40,8 @@
unsigned int select_counter; /* increased when mailbox is changed */
uint32_t messages_count, recent_count;
+ int deleted_count, expunged_count, retr_bytes, retr_messages;
+
time_t last_input, last_output;
unsigned int bad_counter;
@@ -57,10 +59,10 @@
/* Create new client with specified input/output handles. socke...