view src/lib/sendfile-util.h @ 1329:ae229b7acb4c HEAD

Mailbox names are now sent through imap-quoter instead of just escaping it. This means that mailbox names that would require escapes are instead sent as literals now.
author Timo Sirainen <tss@iki.fi>
date Wed, 02 Apr 2003 05:05:38 +0300
parents ee4bdf40ec10
children e4eb71ae8e96
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