/* Read peer configuration file */
readConfiguration();
/* Start the network communicator */
if (Main.algorithm.equals(CBCAST_ALGO))
nManag = new CBCASTNetworkManager(peerIndex);
if (Main.algorithm.equals(TOTAL_ORDER_ALGO))
nManag = new CentralizedNetworkManager(peerIndex);
if (Main.algorithm.equals(THREE_PHASE_ALGO))
nManag = new ThreePhaseNetworkManager(peerIndex);
if (Main.algorithm.equals(ABCAST_ALGO))