1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linu << 2 /* 1 /* 3 * INET An implementation of the TCP/I 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 4 * operating system. INET is imp 3 * operating system. INET is implemented using the BSD Socket 5 * interface as the means of comm 4 * interface as the means of communication with the user level. 6 * 5 * 7 * Global definitions for the IP 6 * Global definitions for the IP router interface. 8 * 7 * 9 * Version: @(#)route.h 1.0.3 05/27/ 8 * Version: @(#)route.h 1.0.3 05/27/93 10 * 9 * 11 * Authors: Original taken from Berkeley U 10 * Authors: Original taken from Berkeley UNIX 4.3, (c) UCB 1986-1988 12 * for the purposes of compatibil 11 * for the purposes of compatibility only. 13 * 12 * 14 * Fred N. van Kempen, <waltje@uW 13 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> 15 * 14 * 16 * Changes: 15 * Changes: 17 * Mike McLagan : Routin 16 * Mike McLagan : Routing by source 18 * 17 * 19 * This program is free software; 18 * This program is free software; you can redistribute it and/or 20 * modify it under the terms of t 19 * modify it under the terms of the GNU General Public License 21 * as published by the Free Softw 20 * as published by the Free Software Foundation; either version 22 * 2 of the License, or (at your 21 * 2 of the License, or (at your option) any later version. 23 */ 22 */ 24 #ifndef _LINUX_ROUTE_H 23 #ifndef _LINUX_ROUTE_H 25 #define _LINUX_ROUTE_H 24 #define _LINUX_ROUTE_H 26 25 27 #include <linux/if.h> 26 #include <linux/if.h> 28 #include <linux/compiler.h> 27 #include <linux/compiler.h> 29 28 30 /* This structure gets passed by the SIOCADDRT 29 /* This structure gets passed by the SIOCADDRT and SIOCDELRT calls. */ 31 struct rtentry { 30 struct rtentry { 32 unsigned long rt_pad1; 31 unsigned long rt_pad1; 33 struct sockaddr rt_dst; /* tar 32 struct sockaddr rt_dst; /* target address */ 34 struct sockaddr rt_gateway; /* gat 33 struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */ 35 struct sockaddr rt_genmask; /* tar 34 struct sockaddr rt_genmask; /* target network mask (IP) */ 36 unsigned short rt_flags; 35 unsigned short rt_flags; 37 short rt_pad2; 36 short rt_pad2; 38 unsigned long rt_pad3; 37 unsigned long rt_pad3; 39 void *rt_pad4; 38 void *rt_pad4; 40 short rt_metric; /* +1 39 short rt_metric; /* +1 for binary compatibility! */ 41 char __user *rt_dev; /* for 40 char __user *rt_dev; /* forcing the device at add */ 42 unsigned long rt_mtu; /* per 41 unsigned long rt_mtu; /* per route MTU/Window */ 43 #ifndef __KERNEL__ 42 #ifndef __KERNEL__ 44 #define rt_mss rt_mtu /* Com 43 #define rt_mss rt_mtu /* Compatibility :-( */ 45 #endif 44 #endif 46 unsigned long rt_window; /* Win 45 unsigned long rt_window; /* Window clamping */ 47 unsigned short rt_irtt; /* Ini 46 unsigned short rt_irtt; /* Initial RTT */ 48 }; 47 }; 49 48 50 49 51 #define RTF_UP 0x0001 /* rou 50 #define RTF_UP 0x0001 /* route usable */ 52 #define RTF_GATEWAY 0x0002 /* des 51 #define RTF_GATEWAY 0x0002 /* destination is a gateway */ 53 #define RTF_HOST 0x0004 /* hos 52 #define RTF_HOST 0x0004 /* host entry (net otherwise) */ 54 #define RTF_REINSTATE 0x0008 /* rei 53 #define RTF_REINSTATE 0x0008 /* reinstate route after tmout */ 55 #define RTF_DYNAMIC 0x0010 /* cre 54 #define RTF_DYNAMIC 0x0010 /* created dyn. (by redirect) */ 56 #define RTF_MODIFIED 0x0020 /* mod 55 #define RTF_MODIFIED 0x0020 /* modified dyn. (by redirect) */ 57 #define RTF_MTU 0x0040 /* spe 56 #define RTF_MTU 0x0040 /* specific MTU for this route */ 58 #define RTF_MSS RTF_MTU /* Com 57 #define RTF_MSS RTF_MTU /* Compatibility :-( */ 59 #define RTF_WINDOW 0x0080 /* per 58 #define RTF_WINDOW 0x0080 /* per route window clamping */ 60 #define RTF_IRTT 0x0100 /* Ini 59 #define RTF_IRTT 0x0100 /* Initial round trip time */ 61 #define RTF_REJECT 0x0200 /* Rej 60 #define RTF_REJECT 0x0200 /* Reject route */ 62 61 63 /* 62 /* 64 * <linux/ipv6_route.h> uses RTF values > 63 * <linux/ipv6_route.h> uses RTF values >= 64k 65 */ 64 */ 66 65 67 66 68 67 69 #endif /* _LINUX_ROUTE_H */ 68 #endif /* _LINUX_ROUTE_H */ 70 69 71 70
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.