diff options
Diffstat (limited to 'sys/netinet/in_pcb.h')
-rw-r--r-- | sys/netinet/in_pcb.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index b631ec3d4f2..de634b82b7f 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in_pcb.h,v 1.70 2010/09/23 04:45:15 yasuoka Exp $ */ +/* $OpenBSD: in_pcb.h,v 1.71 2011/06/15 09:11:01 mikeb Exp $ */ /* $NetBSD: in_pcb.h,v 1.14 1996/02/13 23:42:00 christos Exp $ */ /* @@ -174,9 +174,11 @@ struct inpcbtable { #define INP_RECVIF 0x080 /* receive incoming interface */ #define INP_RECVTTL 0x040 /* receive incoming IP TTL */ #define INP_RECVDSTPORT 0x200 /* receive IP dst addr before rdr */ +#define INP_RECVRTABLE 0x400 /* receive routing table */ #define INP_CONTROLOPTS (INP_RECVOPTS|INP_RECVRETOPTS|INP_RECVDSTADDR| \ - INP_RXSRCRT|INP_HOPLIMIT|INP_RECVIF|INP_RECVTTL|INP_RECVDSTPORT) + INP_RXSRCRT|INP_HOPLIMIT|INP_RECVIF|INP_RECVTTL|INP_RECVDSTPORT| \ + INP_RECVRTABLE) /* * These flags' values should be determined by either the transport |