view src/lib/sendfile-util.h @ 9575:0a00dcc4f0ea HEAD

lib-storage: Allow shared namespace prefix to use %variable modifiers.
author Timo Sirainen <tss@iki.fi>
date Wed, 26 May 2010 17:07:51 +0100
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