svn commit: r237903 - stable/9/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Jul 1 08:13:21 UTC 2012


Author: tuexen
Date: Sun Jul  1 08:13:20 2012
New Revision: 237903
URL: http://svn.freebsd.org/changeset/base/237903

Log:
  MFC r236493:
  Honor sysctl for TTL.

Modified:
  stable/9/sys/netinet/sctp_output.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netinet/sctp_output.c
==============================================================================
--- stable/9/sys/netinet/sctp_output.c	Sun Jul  1 08:11:15 2012	(r237902)
+++ stable/9/sys/netinet/sctp_output.c	Sun Jul  1 08:13:20 2012	(r237903)
@@ -10935,7 +10935,7 @@ sctp_send_shutdown_complete2(struct mbuf
 		iph_out->ip_tos = (u_char)0;
 		iph_out->ip_id = 0;
 		iph_out->ip_off = 0;
-		iph_out->ip_ttl = MAXTTL;
+		iph_out->ip_ttl = MODULE_GLOBAL(ip_defttl);
 		if (port) {
 			iph_out->ip_p = IPPROTO_UDP;
 		} else {
@@ -12004,7 +12004,7 @@ sctp_send_abort(struct mbuf *m, int iphl
 		iph_out->ip_tos = (u_char)0;
 		iph_out->ip_id = 0;
 		iph_out->ip_off = 0;
-		iph_out->ip_ttl = MAXTTL;
+		iph_out->ip_ttl = MODULE_GLOBAL(ip_defttl);
 		if (port) {
 			iph_out->ip_p = IPPROTO_UDP;
 		} else {
@@ -12267,7 +12267,7 @@ sctp_send_operr_to(struct mbuf *m, int i
 		iph_out->ip_tos = (u_char)0;
 		iph_out->ip_id = 0;
 		iph_out->ip_off = 0;
-		iph_out->ip_ttl = MAXTTL;
+		iph_out->ip_ttl = MODULE_GLOBAL(ip_defttl);
 		if (port) {
 			iph_out->ip_p = IPPROTO_UDP;
 		} else {


More information about the svn-src-all mailing list