Skip to content
Snippets Groups Projects
neighbor.go 301 B
Newer Older
  • Learn to ignore specific revisions
  • package routingtable
    
    // Neighbor represents the attributes identifying a neighbor relationsship
    type Neighbor struct {
    	// Addres is the IPv4 address of the neighbor as integer representation
    	Address uint32
    
    	// Type is the type / protocol used to for routing inforation communitation
    	Type uint8
    }