File: dnroute.h

package info (click to toggle)
dnprogs 2.52
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,644 kB
  • ctags: 4,021
  • sloc: ansic: 26,737; cpp: 10,666; makefile: 832; sh: 537; awk: 13
file content (11 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11

struct routeinfo
{
	struct routeinfo *next; /* List of routes to this node/area */
	unsigned short cost;
	unsigned short hops;
	unsigned short router;
	unsigned char valid;
	unsigned char manual;
	unsigned char priority;
};