I think they are trying to help with the "single point of failure" issue related to changing the network traffic from a peer-to-peer, to more of a centric data concentrator/distributor using one master and multiple slaves. One of the advantages of peer-to-peer is that if one node goes down, it only affects that node and possibly the ones it is interfacing with (this number may be relatively small, or may not be critical for that one node). However, with a single data concentrator/distributor, if that one master went down, you know that NO communications between nodes is going on.
So their suggestions first detail how to detect the master is down from each "slave" node (and hence how to possibly handle it). Then, subsequently how to correct the situation where the master is down by allowing one of the slaves to become the "new master". Then finally, how the original master, once it is back up, can re-gain the role of master from the secondary master.
Your system may not require this level of "hot backup at a network level", but they were addressing the differences going from peer-to-peer to master-slave work-around, and looking at the "possible anomalies" that can occur.
It was a big jump, so I understand the confusion. This may not even be an issue in your specific situation.