2002-12-12 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / dbus / dbus-sysdeps.h
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-sysdeps.h Wrappers around system/libc features (internal to D-BUS implementation)
3  * 
4  * Copyright (C) 2002  Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23
24 #ifndef DBUS_SYSDEPS_H
25 #define DBUS_SYSDEPS_H
26
27 #include <dbus/dbus-string.h>
28
29 /* this is perhaps bogus, but strcmp() etc. are faster if we use the
30  * stuff straight out of string.h, so have this here for now.
31  */
32 #include <string.h>
33
34 /* and it would just be annoying to abstract this */
35 #include <errno.h>
36
37 DBUS_BEGIN_DECLS;
38
39 /* The idea of this file is to encapsulate everywhere that we're
40  * relying on external libc features, for ease of security
41  * auditing. The idea is from vsftpd. This also gives us a chance to
42  * make things more convenient to use, e.g.  by reading into a
43  * DBusString. Operating system headers aren't intended to be used
44  * outside of this file and a limited number of others (such as
45  * dbus-memory.c)
46  */
47
48 void _dbus_abort (void);
49
50 const char* _dbus_getenv (const char *varname);
51
52
53 int _dbus_read      (int               fd,
54                      DBusString       *buffer,
55                      int               count);
56 int _dbus_write     (int               fd,
57                      const DBusString *buffer,
58                      int               start,
59                      int               len);
60 int _dbus_write_two (int               fd,
61                      const DBusString *buffer1,
62                      int               start1,
63                      int               len1,
64                      const DBusString *buffer2,
65                      int               start2,
66                      int               len2);
67
68 int _dbus_connect_unix_socket (const char     *path,
69                                DBusResultCode *result);
70 int _dbus_listen_unix_socket  (const char     *path,
71                                DBusResultCode *result);
72 int _dbus_accept_unix_socket  (int             listen_fd);
73
74
75 DBUS_END_DECLS;
76
77 #endif /* DBUS_SYSDEPS_H */