123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #ifndef FD_SHARE_H_
- #define FD_SHARE_H_
- /**
- * \file fd_share.h
- * \short Support to transfer file descriptors between processes.
- * \todo This interface is very C-ish. Should we have some kind of exceptions?
- */
- namespace isc {
- namespace util {
- namespace io {
- const int FD_COMM_ERROR = -2;
- const int FD_OTHER_ERROR = -1;
- /**
- * \short Receives a file descriptor.
- * This receives a file descriptor sent over an unix domain socket. This
- * is the counterpart of send_fd().
- *
- * \return FD_COMM_ERROR when there's error receiving the socket, FD_OTHER_ERROR
- * when there's a different error.
- * \param sock The unix domain socket to read from. Tested and it does
- * not work with a pipe.
- */
- int recv_fd(const int sock);
- /**
- * \short Sends a file descriptor.
- * This sends a file descriptor over an unix domain socket. This is the
- * counterpart of recv_fd().
- *
- * \return FD_COMM_ERROR when there's error sending the socket, FD_OTHER_ERROR
- * for all other possible errors. The global 'errno' variable indicates
- * the corresponding system error.
- * \param sock The unix domain socket to send to. Tested and it does not
- * work with a pipe.
- * \param fd The file descriptor to send. It should work with any valid
- * file descriptor.
- */
- int send_fd(const int sock, const int fd);
- } // End for namespace io
- } // End for namespace util
- } // End for namespace isc
- #endif
- // Local Variables:
- // mode: c++
- // End:
|