]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2930] Adjust terminology in docs
authorMichal 'vorner' Vaner <vorner@vorner.cz>
Thu, 23 May 2013 08:39:52 +0000 (10:39 +0200)
committerMichal 'vorner' Vaner <vorner@vorner.cz>
Thu, 23 May 2013 08:39:52 +0000 (10:39 +0200)
So it is the same as in the ipc-high.txt.

src/lib/config/ccsession.h
src/lib/python/isc/config/ccsession.py

index fd93545acc8eec10b0e5d4d37be13c3b8876cfaf..cc4a93e9c84033e322bfa8d6498914e959f98b56 100644 (file)
@@ -425,9 +425,9 @@ public:
                                            params =
                                            isc::data::ConstElementPtr());
 
-    /// \brief Send a notification to subscribed clients
+    /// \brief Send a notification to subscribed users
     ///
-    /// Send a notification message to all clients subscribed to the given
+    /// Send a notification message to all users subscribed to the given
     /// notification group.
     ///
     /// This method does not not block.
@@ -437,7 +437,7 @@ public:
     ///
     /// \throw CCSessionError for low-level communication errors.
     /// \param notification_group This parameter (indirectly) signifies what
-    ///     clients should receive the notification. Only the clients that
+    ///     users should receive the notification. Only the users that
     ///     subscribed to notifications on the same group receive it.
     /// \param name The name of the event to notify about (for example
     ///     `config_changed`).
index 7e01e8428a5df99e1d2d01683a05a11ac24f0c8a..6df93c0f30ccdf0a9cabd040da7cd92e158548f8 100644 (file)
@@ -541,9 +541,9 @@ class ModuleCCSession(ConfigData):
 
     def notify(self, notification_group, event_name, params=None):
         """
-        Send a notification to subscribed clients.
+        Send a notification to subscribed users.
 
-        Send a notification message to all clients subscribed to the given
+        Send a notification message to all users subscribed to the given
         notification group.
 
         See docs/design/ipc-high.txt for details about notifications
@@ -553,7 +553,7 @@ class ModuleCCSession(ConfigData):
         - CCSessionError: for low-level communication errors.
         Params:
         - notification_group (string): This parameter (indirectly) signifies
-          what clients should receive the notification. Only clients that
+          what users should receive the notification. Only users that
           subscribed to notifications on the same group receive it.
         - event_name (string): The name of the event to notify about (for
           example `config_changed`).