summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-09-09 18:53:57 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-09-09 18:53:57 +0200
commitd14cf2b39d6e2438f2435cd3c89c3b864cec8734 (patch)
tree1919b9ef26b3c57c63cc327652d816b78517cbfb /include
parentbf54810e3f36c0397fa71c6319c76fe76257b9f5 (diff)
downloadconnman-d14cf2b39d6e2438f2435cd3c89c3b864cec8734.tar.gz
connman-d14cf2b39d6e2438f2435cd3c89c3b864cec8734.tar.bz2
connman-d14cf2b39d6e2438f2435cd3c89c3b864cec8734.zip
Remove the no longer needed security framework
D-Bus security policies can now be set directly via the method tables.
Diffstat (limited to 'include')
-rw-r--r--include/security.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/include/security.h b/include/security.h
deleted file mode 100644
index 829c0081..00000000
--- a/include/security.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- *
- * Connection Manager
- *
- * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
-#ifndef __CONNMAN_SECURITY_H
-#define __CONNMAN_SECURITY_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * SECTION:security
- * @title: Security premitives
- * @short_description: Functions for registering security modules
- */
-
-enum connman_security_privilege {
- CONNMAN_SECURITY_PRIVILEGE_PUBLIC = 0,
- CONNMAN_SECURITY_PRIVILEGE_MODIFY = 1,
- CONNMAN_SECURITY_PRIVILEGE_SECRET = 2,
-};
-
-#define CONNMAN_SECURITY_PRIORITY_LOW -100
-#define CONNMAN_SECURITY_PRIORITY_DEFAULT 0
-#define CONNMAN_SECURITY_PRIORITY_HIGH 100
-
-struct connman_security {
- const char *name;
- int priority;
- int (*authorize_sender) (const char *sender,
- enum connman_security_privilege privilege);
-};
-
-int connman_security_register(struct connman_security *security);
-void connman_security_unregister(struct connman_security *security);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __CONNMAN_SECURITY_H */