1. Loop back detection.
This PR reverts 310847 (first half).
For loop back detection now used counter field of CARP packet, that was in CARP to resist replay packets.
Check is simple now: carp_counter from packet compares with carp_counter last send packet.
2. Add counter for loop back detection.
3. CARP packets with VHID = 0 now dropped as "invalid VHID" before any other checks.
4. carp_version != CARP_VERSION || ch->carp_authlen != CARP_AUTHLEN - now is second check.
5. add definition for CARP_AUTHLEN
6. removed sc_init_counter, that fix carp_counter - it always generate from random.
7. Few micro changes:
sizeof(sc->sc_counter) -> (sizeof(uint32_t) * 2)
snprintf(subsys, IFNAMSIZ+5, -> snprintf(subsys, sizeof(subsys),