view src/lib/fdpass.h @ 6410:e4eb71ae8e96 HEAD

Changed .h ifdef/defines to use <NAME>_H format.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 11:31:27 +0300
parents 7c91f579ebed
children
line wrap: on
line source

#ifndef FDPASS_H
#define FDPASS_H

/* Returns number of bytes sent, -1 if error. send_fd can be -1 if we just
   want to send the data with sendmsg(). */
ssize_t fd_send(int handle, int send_fd, const void *data, size_t size);

/* Returns number of bytes read, or -1 if error. fd is set -1 if read was only
   partial (returns 0) or data was received without a passed fd. */
ssize_t fd_read(int handle, void *data, size_t size, int *fd);

#endif