Explorar el Código

Auto merged

2004/10/12 14:57:45-07:00 osdl.net!markh
Message type support for tracking open channels

(Logical change 1.93)


git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@334 fd59a12c-fef9-0310-b244-a6a79926bd2f
Mark Haverkamp hace 21 años
padre
commit
a4a49757ad
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. 8 1
      include/ais_msg.h

+ 8 - 1
include/ais_msg.h

@@ -1108,8 +1108,9 @@ enum evt_chan_ops {
 	EVT_CLOSE_CHAN_OP,
 	EVT_CLEAR_RET_OP,
 	EVT_SET_ID_OP,
-	EVT_CONF_CHANGE,
 	EVT_CONF_DONE,
+	EVT_OPEN_COUNT,
+	EVT_OPEN_COUNT_DONE
 };
 	
 struct evt_set_id {
@@ -1117,6 +1118,11 @@ struct evt_set_id {
 	SaEvtEventIdT	chc_last_id;
 };
 
+struct evt_set_opens {
+	SaNameT		chc_chan_name;
+	uint32_t	chc_open_count;
+};
+
 struct req_evt_chan_command {
 	struct req_header 	chc_head;
 	int 				chc_op;
@@ -1124,6 +1130,7 @@ struct req_evt_chan_command {
 		SaNameT				chc_chan;
 		SaEvtEventIdT		chc_event_id;
 		struct evt_set_id	chc_set_id;
+		struct evt_set_opens chc_set_opens;
 	} u;
 };
 #endif /* AIS_MSG_H_DEFINED */