Date: Thu, 5 Nov 2009 06:08:04 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r198941 - head/lib/libstand Message-ID: <200911050608.nA5684TK064364@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marcel Date: Thu Nov 5 06:08:04 2009 New Revision: 198941 URL: http://svn.freebsd.org/changeset/base/198941 Log: IP_TTL is an IP socket option, not a TTL value. Use IPDEFTTL instead. Modified: head/lib/libstand/udp.c Modified: head/lib/libstand/udp.c ============================================================================== --- head/lib/libstand/udp.c Thu Nov 5 04:51:38 2009 (r198940) +++ head/lib/libstand/udp.c Thu Nov 5 06:08:04 2009 (r198941) @@ -90,7 +90,7 @@ sendudp(d, pkt, len) ip->ip_hl = sizeof(*ip) >> 2; /* half-char */ ip->ip_len = htons(len); ip->ip_p = IPPROTO_UDP; /* char */ - ip->ip_ttl = IP_TTL; /* char */ + ip->ip_ttl = IPDEFTTL; /* char */ ip->ip_src = d->myip; ip->ip_dst = d->destip; ip->ip_sum = in_cksum(ip, sizeof(*ip)); /* short, but special */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911050608.nA5684TK064364>