summaryrefslogtreecommitdiffstats
path: root/src/providers/data_provider.h
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-02-22 10:11:18 -0500
committerStephen Gallagher <sgallagh@redhat.com>2010-02-22 12:54:52 -0500
commite55f1df17af45d2e32153b41006c06061d0337e5 (patch)
tree03630ec13a85bd7df26a6c4100fb7714270815a0 /src/providers/data_provider.h
parentb81f453b8ade026f9c19bfd557a986cbcf0c9c8c (diff)
downloadsssd-e55f1df17af45d2e32153b41006c06061d0337e5.tar.gz
sssd-e55f1df17af45d2e32153b41006c06061d0337e5.tar.xz
sssd-e55f1df17af45d2e32153b41006c06061d0337e5.zip
Remove unnecessary domain parameter from PAM requests
If we're sending a message to the backend, we already know which domain the request is targeting. Carrying this information is not useful and confuses the interface.
Diffstat (limited to 'src/providers/data_provider.h')
-rw-r--r--src/providers/data_provider.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/providers/data_provider.h b/src/providers/data_provider.h
index cbb4ebb44..747e6e89d 100644
--- a/src/providers/data_provider.h
+++ b/src/providers/data_provider.h
@@ -63,10 +63,9 @@
* The PAM responder send all the data it has received from the PAM client to
* the authentication backend with a DBUS message.
*
- * As a response it expects basically a PAM return value (see pam(3) for
- * details) and the name of the domain. The backend may send any number of
- * additional messages (see ...) which are forwarded by the PAM responder to
- * the PAM client.
+ * As a response it expects a PAM return value (see pam(3) for details).
+ * The backend may send any number of additional messages (see ...) which are
+ * forwarded by the PAM responder to the PAM client.
* @{
*/
@@ -77,7 +76,6 @@
* hand it must have the following elements:
*
* @param DBUS_TYPE_INT32 PAM Command, see #sss_cli_command for allowed values
- * @param DBUS_TYPE_STRING Name of the Domain
* @param DBUS_TYPE_STRING User name, this value is send by the PAM client and
* contains the value of the PAM item PAM_USER
* @param DBUS_TYPE_STRING Service name, this value is send by the PAM client
@@ -111,8 +109,7 @@
* indicate that the provider is offline and that the PAM responder should try
* a chached authentication, for all other return value see the man pages for
* the corresponding PAM service functions
- * @retval DBUS_TYPE_STRING Domain Name
- * @retval DBUS_TYPE_ARRAY__(STRUCT) (optional) Zero more more additional
+ * @retval DBUS_TYPE_ARRAY__(STRUCT) Zero or more additional getAccountInfo
* messages, here the DBUS_TYPE_STRUCT is build of a DBUS_TYPE_UINT32 holding
* an identifier (see #response_type) and DBUS_TYPE_G_BYTE_ARRAY with the data
* of the message.