diff options
author | Thomas Graf <tgraf@suug.ch> | 2006-08-07 20:57:44 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 17:54:01 -0400 |
commit | 9067c722cf6930adf1df2d169de9094dd90b0c33 (patch) | |
tree | eb2133038cbd85bbf55b5acd2d5297f03357e45b /include/linux/rtnetlink.h | |
parent | 8b8aec508302d4e63fd88f47894805115277f70f (diff) |
[NEIGH]: Move netlink neighbour bits to linux/neighbour.h
Moves netlink neighbour bits to linux/neighbour.h. Also
moves bits to be exported to userspace from net/neighbour.h
to linux/neighbour.h and removes __KERNEL__ guards, userspace
is not supposed to be using it.
rtnetlink_rcv_msg() is not longer required to parse attributes
for the neighbour layer, remove dependency on obsolete and
buggy rta_buf.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/rtnetlink.h')
-rw-r--r-- | include/linux/rtnetlink.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index 84f3eb426da2..9750f0214c22 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h | |||
@@ -386,69 +386,6 @@ struct rta_session | |||
386 | 386 | ||
387 | 387 | ||
388 | 388 | ||
389 | /************************************************************** | ||
390 | * Neighbour discovery. | ||
391 | ****/ | ||
392 | |||
393 | struct ndmsg | ||
394 | { | ||
395 | unsigned char ndm_family; | ||
396 | unsigned char ndm_pad1; | ||
397 | unsigned short ndm_pad2; | ||
398 | int ndm_ifindex; /* Link index */ | ||
399 | __u16 ndm_state; | ||
400 | __u8 ndm_flags; | ||
401 | __u8 ndm_type; | ||
402 | }; | ||
403 | |||
404 | enum | ||
405 | { | ||
406 | NDA_UNSPEC, | ||
407 | NDA_DST, | ||
408 | NDA_LLADDR, | ||
409 | NDA_CACHEINFO, | ||
410 | NDA_PROBES, | ||
411 | __NDA_MAX | ||
412 | }; | ||
413 | |||
414 | #define NDA_MAX (__NDA_MAX - 1) | ||
415 | |||
416 | #define NDA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg)))) | ||
417 | #define NDA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndmsg)) | ||
418 | |||
419 | /* | ||
420 | * Neighbor Cache Entry Flags | ||
421 | */ | ||
422 | |||
423 | #define NTF_PROXY 0x08 /* == ATF_PUBL */ | ||
424 | #define NTF_ROUTER 0x80 | ||
425 | |||
426 | /* | ||
427 | * Neighbor Cache Entry States. | ||
428 | */ | ||
429 | |||
430 | #define NUD_INCOMPLETE 0x01 | ||
431 | #define NUD_REACHABLE 0x02 | ||
432 | #define NUD_STALE 0x04 | ||
433 | #define NUD_DELAY 0x08 | ||
434 | #define NUD_PROBE 0x10 | ||
435 | #define NUD_FAILED 0x20 | ||
436 | |||
437 | /* Dummy states */ | ||
438 | #define NUD_NOARP 0x40 | ||
439 | #define NUD_PERMANENT 0x80 | ||
440 | #define NUD_NONE 0x00 | ||
441 | |||
442 | |||
443 | struct nda_cacheinfo | ||
444 | { | ||
445 | __u32 ndm_confirmed; | ||
446 | __u32 ndm_used; | ||
447 | __u32 ndm_updated; | ||
448 | __u32 ndm_refcnt; | ||
449 | }; | ||
450 | |||
451 | |||
452 | /***************************************************************** | 389 | /***************************************************************** |
453 | * Neighbour tables specific messages. | 390 | * Neighbour tables specific messages. |
454 | * | 391 | * |