MessageType.py 160 B

1234567891011
  1. from enum import Enum
  2. class MessageType(Enum):
  3. """
  4. Defines possible Message types
  5. """
  6. HELLO=0
  7. HELLO_REPLY=1
  8. NEIGHBORLIST_REQUEST=2
  9. NEIGHBORLIST_REPLY=3