[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [libmicrohttpd] Using sendfile for file segment
From: |
Christian Grothoff |
Subject: |
Re: [libmicrohttpd] Using sendfile for file segment |
Date: |
Mon, 29 Nov 2010 22:47:33 +0100 |
User-agent: |
KMail/1.13.5 (Linux/2.6.35-23-generic; KDE/4.5.1; i686; ; ) |
You're right that this is currently not possible. We'd need to extend the API
to allow (additionally) passing an offset / length, then this should be easy
to do. I'm not opposed to having such a function in principle.
However, as long as you don't require sendfile AND partial sends, you should
be fine with the current API.
Happy hacking,
Christian
On Monday, November 29, 2010 03:16:23 am Eivind Sarto wrote:
> I am looking for a way to use microhttpd to send a response using sendfile,
> but I do not wish to transfer the entire file, just a segment of the file.
>
> I don't see an interface for transferring just a portion of a file (at
> some offset + length)
> and make libmicrohttpd use the linux sendfile system call.
>
> Am I missing something?
>
> -eivind