* Added some power saving features, needs some testing to confirm this is working...
[monky] / src / dbus / dbus-credentials.h
diff --git a/src/dbus/dbus-credentials.h b/src/dbus/dbus-credentials.h
deleted file mode 100644 (file)
index 8eed2bd..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
-/* dbus-credentials.h Credentials provable through authentication
- *
- * Copyright (C) 2007 Red Hat Inc.
- *
- * Licensed under the Academic Free License version 2.1
- * 
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- */
-#ifndef DBUS_CREDENTIALS_H
-#define DBUS_CREDENTIALS_H
-
-#include <dbus/dbus-macros.h>
-#include <dbus/dbus-errors.h>
-#include <dbus/dbus-string.h>
-#include <dbus/dbus-sysdeps.h>
-
-DBUS_BEGIN_DECLS
-
-typedef enum {
-  DBUS_CREDENTIAL_UNIX_PROCESS_ID,
-  DBUS_CREDENTIAL_UNIX_USER_ID,
-  DBUS_CREDENTIAL_ADT_AUDIT_DATA_ID,
-  DBUS_CREDENTIAL_WINDOWS_SID
-} DBusCredentialType;
-
-DBusCredentials* _dbus_credentials_new_from_current_process (void);
-DBusCredentials* _dbus_credentials_new                      (void);
-void             _dbus_credentials_ref                      (DBusCredentials    *credentials);
-void             _dbus_credentials_unref                    (DBusCredentials    *credentials);
-dbus_bool_t      _dbus_credentials_add_unix_pid             (DBusCredentials    *credentials,
-                                                             dbus_pid_t          pid);
-dbus_bool_t      _dbus_credentials_add_unix_uid             (DBusCredentials    *credentials,
-                                                             dbus_uid_t          uid);
-dbus_bool_t      _dbus_credentials_add_windows_sid          (DBusCredentials    *credentials,
-                                                             const char         *windows_sid);
-dbus_bool_t      _dbus_credentials_add_adt_audit_data       (DBusCredentials    *credentials,
-                                                             void               *audit_data,
-                                                             dbus_int32_t        size);
-dbus_bool_t      _dbus_credentials_include                  (DBusCredentials    *credentials,
-                                                             DBusCredentialType  type);
-dbus_pid_t       _dbus_credentials_get_unix_pid             (DBusCredentials    *credentials);
-dbus_uid_t       _dbus_credentials_get_unix_uid             (DBusCredentials    *credentials);
-const char*      _dbus_credentials_get_windows_sid          (DBusCredentials    *credentials);
-void *           _dbus_credentials_get_adt_audit_data       (DBusCredentials    *credentials);
-dbus_int32_t     _dbus_credentials_get_adt_audit_data_size  (DBusCredentials    *credentials);
-dbus_bool_t      _dbus_credentials_are_superset             (DBusCredentials    *credentials,
-                                                             DBusCredentials    *possible_subset);
-dbus_bool_t      _dbus_credentials_are_empty                (DBusCredentials    *credentials);
-dbus_bool_t      _dbus_credentials_are_anonymous            (DBusCredentials    *credentials);
-dbus_bool_t      _dbus_credentials_add_credentials          (DBusCredentials    *credentials,
-                                                             DBusCredentials    *other_credentials);
-/* must silently allow 'which' to not exist */
-dbus_bool_t      _dbus_credentials_add_credential           (DBusCredentials    *credentials,
-                                                             DBusCredentialType  which,
-                                                             DBusCredentials    *other_credentials);
-void             _dbus_credentials_clear                    (DBusCredentials    *credentials);
-DBusCredentials* _dbus_credentials_copy                     (DBusCredentials    *credentials);
-dbus_bool_t      _dbus_credentials_same_user                (DBusCredentials    *credentials,
-                                                             DBusCredentials    *other_credentials);
-
-
-DBUS_END_DECLS
-
-#endif /* DBUS_CREDENTIALS_H */