summaryrefslogtreecommitdiff
path: root/lib/gibber/gibber-sockets-unix.h
blob: bf59331ff227c92c05beeca1f8ad2411b41f6448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* To be included by gibber-sockets.h only.
 * Do not include this header directly. */

/*
 * gibber-sockets-unix.h - meta-header for assorted semi-portable socket code
 * Copyright (C) 2009 Collabora Ltd.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <config.h>

/* prerequisite for stdlib.h on Darwin etc., according to autoconf.info */
#include <stdio.h>
/* prerequisite for sys/socket.h on Darwin, according to autoconf.info */
#include <stdlib.h>
/* prerequisite for all sorts of things */
#include <sys/types.h>

#ifdef HAVE_ARPA_INET_H
#   include <arpa/inet.h>
#endif
#ifdef HAVE_ARPA_NAMESER_H
#   include <arpa/nameser.h>
#endif
#ifdef HAVE_FCNTL_H
#   include <fcntl.h>
#endif
#ifdef HAVE_NETDB_H
#   include <netdb.h>
#endif
#ifdef HAVE_NETINET_IN_H
#   include <netinet/in.h>
#endif
#ifdef HAVE_RESOLV_H
    /* autoconf.info recommends putting sys/types.h, netinet/in.h,
     * arpa/nameser.h, netdb.h before this one; if you re-order this header,
     * please keep that true */
#   include <resolv.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#   include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_UN_H
#   include <sys/un.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#   include <sys/socket.h>
#endif