1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-sysdeps.h Wrappers around system/libc features (internal to D-BUS implementation)
4 * Copyright (C) 2002 Red Hat, Inc.
6 * Licensed under the Academic Free License version 1.2
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.
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.
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
24 #ifndef DBUS_SYSDEPS_H
25 #define DBUS_SYSDEPS_H
27 #include <dbus/dbus-string.h>
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.
34 /* and it would just be annoying to abstract this */
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
48 void _dbus_abort (void);
50 const char* _dbus_getenv (const char *varname);
53 int _dbus_read (int fd,
56 int _dbus_write (int fd,
57 const DBusString *buffer,
60 int _dbus_write_two (int fd,
61 const DBusString *buffer1,
64 const DBusString *buffer2,
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);
77 #endif /* DBUS_SYSDEPS_H */