~ubuntu-branches/ubuntu/trusty/mpd/trusty

« back to all changes in this revision

Viewing changes to src/fd_util.h

  • Committer: Bazaar Package Importer
  • Author(s): Angel Abad
  • Date: 2011-02-02 12:26:30 UTC
  • mfrom: (1.5.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20110202122630-bdyx8w4k94doz4fs
Tags: 0.16.1-1ubuntu1
* Merge from debian unstable. Remaining changes:
  - debian/control:
    + Don't build-depend on libmikmod2-dev (Debian bug #510675).
    + Move avahi-daemon from Suggests field to Recommends field.
  - debian/mpd.init.d:
    + Read mpd user from mpd.conf.
  - debian/control, debian/rules:
    + Add libmp3lame-dev to the build dependencies and enable lame.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2003-2010 The Music Player Daemon Project
 
3
 * http://www.musicpd.org
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 *
 
9
 * - Redistributions of source code must retain the above copyright
 
10
 * notice, this list of conditions and the following disclaimer.
 
11
 *
 
12
 * - Redistributions in binary form must reproduce the above copyright
 
13
 * notice, this list of conditions and the following disclaimer in the
 
14
 * documentation and/or other materials provided with the distribution.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
17
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
18
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
19
 * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
 
20
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
21
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
22
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
23
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 
24
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 
25
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
26
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
27
 */
 
28
 
 
29
/*
 
30
 * This library provides easy helper functions for working with file
 
31
 * descriptors.  It has wrappers for taking advantage of Linux 2.6
 
32
 * specific features like O_CLOEXEC.
 
33
 *
 
34
 */
 
35
 
 
36
#ifndef FD_UTIL_H
 
37
#define FD_UTIL_H
 
38
 
 
39
#include <stdbool.h>
 
40
#include <stddef.h>
 
41
 
 
42
#ifndef WIN32
 
43
#if !defined(_GNU_SOURCE) && (defined(HAVE_PIPE2) || defined(HAVE_ACCEPT4))
 
44
#define _GNU_SOURCE
 
45
#endif
 
46
 
 
47
#include <sys/types.h>
 
48
#endif
 
49
 
 
50
struct sockaddr;
 
51
 
 
52
/**
 
53
 * Wrapper for dup(), which sets the CLOEXEC flag on the new
 
54
 * descriptor.
 
55
 */
 
56
int
 
57
dup_cloexec(int oldfd);
 
58
 
 
59
/**
 
60
 * Wrapper for open(), which sets the CLOEXEC flag (atomically if
 
61
 * supported by the OS).
 
62
 */
 
63
int
 
64
open_cloexec(const char *path_fs, int flags, int mode);
 
65
 
 
66
/**
 
67
 * Wrapper for pipe(), which sets the CLOEXEC flag (atomically if
 
68
 * supported by the OS).
 
69
 */
 
70
int
 
71
pipe_cloexec(int fd[2]);
 
72
 
 
73
/**
 
74
 * Wrapper for pipe(), which sets the CLOEXEC flag (atomically if
 
75
 * supported by the OS).
 
76
 *
 
77
 * On systems that supports it (everybody except for Windows), it also
 
78
 * sets the NONBLOCK flag.
 
79
 */
 
80
int
 
81
pipe_cloexec_nonblock(int fd[2]);
 
82
 
 
83
#ifndef WIN32
 
84
 
 
85
/**
 
86
 * Wrapper for socketpair(), which sets the CLOEXEC flag (atomically
 
87
 * if supported by the OS).
 
88
 */
 
89
int
 
90
socketpair_cloexec(int domain, int type, int protocol, int sv[2]);
 
91
 
 
92
#endif
 
93
 
 
94
/**
 
95
 * Wrapper for socket(), which sets the CLOEXEC and the NONBLOCK flag
 
96
 * (atomically if supported by the OS).
 
97
 */
 
98
int
 
99
socket_cloexec_nonblock(int domain, int type, int protocol);
 
100
 
 
101
/**
 
102
 * Wrapper for accept(), which sets the CLOEXEC and the NONBLOCK flags
 
103
 * (atomically if supported by the OS).
 
104
 */
 
105
int
 
106
accept_cloexec_nonblock(int fd, struct sockaddr *address,
 
107
                        size_t *address_length_r);
 
108
 
 
109
 
 
110
#ifndef WIN32
 
111
 
 
112
struct msghdr;
 
113
 
 
114
/**
 
115
 * Wrapper for recvmsg(), which sets the CLOEXEC flag (atomically if
 
116
 * supported by the OS).
 
117
 */
 
118
ssize_t
 
119
recvmsg_cloexec(int sockfd, struct msghdr *msg, int flags);
 
120
 
 
121
#endif
 
122
 
 
123
/**
 
124
 * Wrapper for inotify_init(), which sets the CLOEXEC flag (atomically
 
125
 * if supported by the OS).
 
126
 */
 
127
int
 
128
inotify_init_cloexec(void);
 
129
 
 
130
#endif