Add RTF_STATIC to default route's flags in the hope that routed will no

longer remove it while it is running.
This commit is contained in:
Peter Wemm 1996-08-13 09:19:45 +00:00
parent b49090e691
commit 2db86e5b74
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: route.c,v 1.5 1996/01/11 17:48:56 phk Exp $
* $Id: route.c,v 1.6 1996/05/11 20:48:42 phk Exp $
*
*/
#include <sys/types.h>
@ -75,7 +75,7 @@ struct in_addr mask;
if (cmd == RTM_ADD) rtmes.m_rtm.rtm_addrs |= RTA_GATEWAY;
rtmes.m_rtm.rtm_seq = ++seqno;
rtmes.m_rtm.rtm_pid = getpid();
rtmes.m_rtm.rtm_flags = RTF_UP | RTF_GATEWAY;
rtmes.m_rtm.rtm_flags = RTF_UP | RTF_GATEWAY | RTF_STATIC;
bzero(&rtdata, sizeof(rtdata));
rtdata.sin_len = 16;