]> rtime.felk.cvut.cz Git - frescor/fwp.git/blob - fwp/old.mngr/fwp_participant_table.h
fwp-timing: Added -c flag to specify the number of messages to be sent
[frescor/fwp.git] / fwp / old.mngr / fwp_participant_table.h
1 #ifndef _FWP_PARTICIPANT_TABLE_H
2 #define _FWP_PARTICIPANT_TABLE_H
3
4 #include "fwp_participant.h"
5
6 void fwp_participant_table_insert(fwp_participant_t *participant);
7 fwp_participant_t* fwp_participant_table_find(fwp_participant_id_t *participant_id);
8 int fwp_participant_table_delete(fwp_participant_t *participant);
9
10 fwp_participant_t* fwp_participant_table_foreach_begin(void);
11 fwp_participant_t* fwp_participant_table_foreach_next(fwp_participant_t *current);
12 void               fwp_participant_table_foreach_end(void);
13
14 int fwp_participant_table_nr_participants();
15
16 #endif /*_FWP_PARTICIPANT_TABLE_H */