diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-07-05 20:16:13 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-07-05 23:31:01 +0800 |
commit | 17127fbee9fd1b0baecb4e305c005d6abbf8d880 (patch) | |
tree | 37d0b9ecc37a6685125b2d30567e5b420dacfc59 /modules/plugin-mono | |
parent | a51ea9b9770660531d1d48da4c230e0af118f297 (diff) | |
download | gsoc2013-evolution-17127fbee9fd1b0baecb4e305c005d6abbf8d880.tar.gz gsoc2013-evolution-17127fbee9fd1b0baecb4e305c005d6abbf8d880.tar.zst gsoc2013-evolution-17127fbee9fd1b0baecb4e305c005d6abbf8d880.zip |
Prefer g_seekable_seek() over camel_stream_reset().
When a stream is obviously a file or memory stream (both of which
implement the GSeekable interface), use g_seekable_seek() instead of
camel_stream_reset().
This is helping me discover if it's safe to remove camel_stream_reset().
We want to eventually move to GIO streams, which have no reset method.
Diffstat (limited to 'modules/plugin-mono')
-rw-r--r-- | modules/plugin-mono/Camel.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/plugin-mono/Camel.cs b/modules/plugin-mono/Camel.cs index c415498c02..21fbe468f4 100644 --- a/modules/plugin-mono/Camel.cs +++ b/modules/plugin-mono/Camel.cs @@ -630,7 +630,6 @@ namespace Camel { [DllImport("camel-1.2")] static extern int camel_stream_eos(IntPtr o); [DllImport("camel-1.2")] static extern int camel_stream_close(IntPtr o); [DllImport("camel-1.2")] static extern int camel_stream_flush(IntPtr o); - [DllImport("camel-1.2")] static extern int camel_stream_reset(IntPtr o); public int write(byte [] data, int len) { int ret; @@ -671,11 +670,6 @@ namespace Camel { throw new Exception(Exception.Type.SYSTEM, "IO close Error"); } - public void reset() { - if (camel_stream_reset(cobject) == -1) - throw new Exception(Exception.Type.SYSTEM, "IO reset Error"); - } - public void flush() { if (camel_stream_flush(cobject) == -1) throw new Exception(Exception.Type.SYSTEM, "IO close Error"); |