[asterisk-commits] eliel: branch group/data_api_gsoc2009 r204753 - /team/group/data_api_gsoc2009...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jul 2 13:07:21 CDT 2009
Author: eliel
Date: Thu Jul 2 13:07:18 2009
New Revision: 204753
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=204753
Log:
Remove security structures that we are not going to implement as part of the programm
Modified:
team/group/data_api_gsoc2009/include/asterisk/data.h
Modified: team/group/data_api_gsoc2009/include/asterisk/data.h
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/data_api_gsoc2009/include/asterisk/data.h?view=diff&rev=204753&r1=204752&r2=204753
==============================================================================
--- team/group/data_api_gsoc2009/include/asterisk/data.h (original)
+++ team/group/data_api_gsoc2009/include/asterisk/data.h Thu Jul 2 13:07:18 2009
@@ -122,25 +122,6 @@
};
#define AST_DATA_ENTRY(__path, __handler) { .version = AST_DATA_VERSION, .path = __path, .handler = __handler }
-
-/*! \brief Specifies the user information to be passed to the
- * data API.
- */
-struct ast_data_security_user {
- AST_DECLARE_STRING_FIELDS(
- AST_STRING_FIELD(username);
- AST_STRING_FIELD(groupname);
- );
-};
-
-/*! \brief Specifies the district information to be passed to the
- * data API.
- */
-struct ast_data_security_district {
- AST_DECLARE_STRING_FIELDS(
- AST_STRING_FIELD(district);
- );
-};
/*! \brief A query to the data API is specified in this structure. */
struct ast_data_query {
@@ -157,11 +138,6 @@
* Setting it to NULL will return every internal node. */
AST_STRING_FIELD(filter);
);
-
- /*! \brief user information trying to access the tree. */
- struct ast_data_security_user *secuser;
- /*! \brief district trying to access the tree. */
- struct ast_data_security_district *secdistrict;
};
/*!
More information about the asterisk-commits
mailing list