From owner-svn-src-stable@FreeBSD.ORG Thu Jun 13 21:02:44 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9DE162A2; Thu, 13 Jun 2013 21:02:44 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8EB4012BA; Thu, 13 Jun 2013 21:02:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5DL2ia0012461; Thu, 13 Jun 2013 21:02:44 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5DL2iNY012460; Thu, 13 Jun 2013 21:02:44 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201306132102.r5DL2iNY012460@svn.freebsd.org> From: John Baldwin Date: Thu, 13 Jun 2013 21:02:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r251707 - stable/9/sbin/dhclient X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jun 2013 21:02:44 -0000 Author: jhb Date: Thu Jun 13 21:02:44 2013 New Revision: 251707 URL: http://svnweb.freebsd.org/changeset/base/251707 Log: MFC 249766: Use a higher TTL (128) for DHCP packets. Modified: stable/9/sbin/dhclient/packet.c Directory Properties: stable/9/sbin/dhclient/ (props changed) Modified: stable/9/sbin/dhclient/packet.c ============================================================================== --- stable/9/sbin/dhclient/packet.c Thu Jun 13 21:01:33 2013 (r251706) +++ stable/9/sbin/dhclient/packet.c Thu Jun 13 21:02:44 2013 (r251707) @@ -128,7 +128,7 @@ assemble_udp_ip_header(unsigned char *bu ip.ip_len = htons(sizeof(ip) + sizeof(udp) + len); ip.ip_id = 0; ip.ip_off = 0; - ip.ip_ttl = 16; + ip.ip_ttl = 128; ip.ip_p = IPPROTO_UDP; ip.ip_sum = 0; ip.ip_src.s_addr = from;