diff options
author | Not Zed <NotZed@Ximian.com> | 2002-04-04 10:43:47 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-04-04 10:43:47 +0800 |
commit | 91139a7bb2e7ee1ca0451cc79282a67f18578a01 (patch) | |
tree | affd9185e3d18cc77b6c72f9691c33a5e3c4503e /camel | |
parent | b5998623067bf9ecea7558fb5168076bbf857fb1 (diff) | |
download | gsoc2013-evolution-91139a7bb2e7ee1ca0451cc79282a67f18578a01.tar.gz gsoc2013-evolution-91139a7bb2e7ee1ca0451cc79282a67f18578a01.tar.zst gsoc2013-evolution-91139a7bb2e7ee1ca0451cc79282a67f18578a01.zip |
Reset the keepalive timeout to 10 minutes rather than the 30 seconds I was
2002-04-04 Not Zed <NotZed@Ximian.com>
* camel-remote-store.c (remote_connect): Reset the keepalive
timeout to 10 minutes rather than the 30 seconds I was using for
testing.
svn path=/trunk/; revision=16336
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/camel-remote-store.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 6dd0ee9b3b..71c40ec9d6 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2002-04-04 Not Zed <NotZed@Ximian.com> + + * camel-remote-store.c (remote_connect): Reset the keepalive + timeout to 10 minutes rather than the 30 seconds I was using for + testing. + 2002-04-03 Dan Winship <danw@ximian.com> * camel-provider.h (CamelProvider): make service_cache be an array diff --git a/camel/camel-remote-store.c b/camel/camel-remote-store.c index f91c28c26b..5f56b66fd4 100644 --- a/camel/camel-remote-store.c +++ b/camel/camel-remote-store.c @@ -272,7 +272,7 @@ remote_connect (CamelService *service, CamelException *ex) if (CRSC (store)->keepalive) { CamelSession *session = camel_service_get_session (CAMEL_SERVICE (store)); - store->timeout_id = camel_session_register_timeout (session, 30 * 1000 /* FIXME: 10 * 60 * 1000 */, + store->timeout_id = camel_session_register_timeout (session, 10 * 60 * 1000, timeout_cb, store); } |