PaCO++
0.05
|
00001 // This file defines the descr structure 00002 // of the GaBro library. 00003 00004 module GaBroLib 00005 { 00006 struct GaBroDescr 00007 { 00008 // This is the total number of T in the the client side 00009 long total_data_nb; 00010 // This is the total number of T in the the client node 00011 long node_data_nb; 00012 // This is the position of data node in the list 00013 long node_position; 00014 // This is the real size of the call 00015 long current_data_size; 00016 // This is the sender nb 00017 short sender; 00018 }; 00019 }; 00020 00021