Displaying 5 results from an estimated 5 matches for "sendv".
Did you mean:
send
2014 Dec 11
2
stacking istreams and ostreams
...are working fine on any kind of mail the test
suite is passing through them. But as soon as the zlib plugin is enabled
the logs show an cache error:
failed: Cached message size larger than expected (214 > 206, box=INBOX,
UID=1)
I've already double-checked the return values of ostream's sendv and
istream's read function. They seem correct (and equal).
If the order of the streams are changed (by changing the number in the
lib-filename libxx_scrambler.so); meaning that the encryption is done
before the compression (which isn't efficient) both streams are working
correct without a...
2011 Oct 31
1
Rewrite the ostream output method, to save messages in another directory.
...am *input, const
char *type)
{
struct emexis_ostream *X_stream;
struct ostream *new_output;
int fd;
fd = open("/tmp/email",O_WRONLY);
new_output = o_stream_create_fd_file(fd, 0, TRUE);
o_stream_cork(new_output);
emexis_stream = i_new(struct emexis_ostream, 1);
emexis_stream->ostream.sendv = o_stream_X_sendv;
emexis_stream->ostream.flush = o_stream_X_flush;
emexis_stream->ostream.iostream.close = o_stream_X_close;
emexis_stream->output = new_output;
emexis_stream->input = input;
o_stream_ref(new_output);
return o_stream_create(&X_stream->ostream);
}
With this n...
2014 Dec 12
0
stacking istreams and ostreams
...l the test
> suite is passing through them. But as soon as the zlib plugin is enabled
> the logs show an cache error:
>
> failed: Cached message size larger than expected (214 > 206, box=INBOX,
> UID=1)
>
> I've already double-checked the return values of ostream's sendv and
> istream's read function. They seem correct (and equal).
>
> If the order of the streams are changed (by changing the number in the
> lib-filename libxx_scrambler.so); meaning that the encryption is done
> before the compression (which isn't efficient) both streams are...
2015 Jan 05
1
[Announcement] Tinc version 1.1pre11 released
On Mon, Jan 5, 2015 at 7:10 AM, Lance Fredrickson
<lancethepants at gmail.com> wrote:
> Just wanted to pop in and say I think 1.1pre11 is a really good release.
> I have a couple nodes behind a work firewall (sonicwall) over which I have
> no control. Previously nodes always fell back to TCP, and the connection
> was unusable. Now it always connects over UDP and works like it
2012 Sep 20
17
[PATCH 0/4] Add V4V to Xen (v6)
...e
event channel port.
- Public headers with actual type definition
- Align all the v4v type to 64 bits
- Modify v4v MAGIC numbers because we won''t
but backward compatible anymore
- Merge insert and insertv
- Merge send and sendv
- Turn all the lock prerequisite from comment
to ASSERT()
- Make use or write_atomic instead of volatile pointers
- Merge v4v_memcpy_to_guest_ring and
v4v_memcpy_to_guest_ring_from_guest
- Introduce copy_from_guest_maybe that can take...