From: Miloš Mulač Date: Fri, 25 Feb 2005 14:00:50 +0000 (+0000) Subject: added some more comments X-Git-Tag: glite-lb-client-interface_R_1_0_2~42 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=44015ffcb1ab2074a1050e4cbbd47951644523c6;p=jra1mw.git added some more comments --- diff --git a/org.glite.lb.client-interface/interface/notification.h b/org.glite.lb.client-interface/interface/notification.h index 2729cb8..da76527 100644 --- a/org.glite.lb.client-interface/interface/notification.h +++ b/org.glite.lb.client-interface/interface/notification.h @@ -51,9 +51,10 @@ int edg_wll_NotifNew( /** Change the receiving local address. * Report the new address to the server. * - * \param fd - * \param address_override - * \param valid all same as for \ref edg_wll_NotifNew + * \param id notification ID you are binding to + * \param fd same as for \ref edg_wll_NotifNew + * \param address_override same as for \ref edg_wll_NotifNew + * \param valid same as for \ref edg_wll_NotifNew */ int edg_wll_NotifBind( @@ -65,9 +66,13 @@ int edg_wll_NotifBind( ); typedef enum _edg_wll_NotifChangeOp { + /** No operation, equal to not defined */ EDG_WLL_NOTIF_NOOP = 0, + /** Replace notification registration with new one */ EDG_WLL_NOTIF_REPLACE, + /** Add new condition when to be notifed */ EDG_WLL_NOTIF_ADD, + /** Remove condition on notification */ EDG_WLL_NOTIF_REMOVE /* if adding new attribute, add conversion string to common/xml_conversions.c too !! */ } edg_wll_NotifChangeOp;