view src/lib/sendfile-util.h @ 9451:9fff30644260 HEAD

istream-concat: Fixed a lot of bugs.
author Timo Sirainen <tss@iki.fi>
date Mon, 26 Oct 2009 17:06:57 -0400
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef SENDFILE_UTIL_H
#define SENDFILE_UTIL_H

/* Wrapper for various sendfile()-like calls. Returns -1 and errno=EINVAL if
   it isn't supported for some reason (out_fd isn't a socket, offset is too
   large, or there simply is no sendfile()). */
ssize_t safe_sendfile(int out_fd, int in_fd, uoff_t *offset, size_t count);

#endif