svn commit: r214933 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Nov 7 17:50:56 UTC 2010


Author: tuexen
Date: Sun Nov  7 17:50:56 2010
New Revision: 214933
URL: http://svn.freebsd.org/changeset/base/214933

Log:
  Remove two functions which are not used.
  
  MFC after: 3 days.

Modified:
  head/sys/netinet/sctp_timer.c
  head/sys/netinet/sctp_timer.h

Modified: head/sys/netinet/sctp_timer.c
==============================================================================
--- head/sys/netinet/sctp_timer.c	Sun Nov  7 17:50:55 2010	(r214932)
+++ head/sys/netinet/sctp_timer.c	Sun Nov  7 17:50:56 2010	(r214933)
@@ -1670,30 +1670,6 @@ sctp_heartbeat_timer(struct sctp_inpcb *
 	return (0);
 }
 
-int
-sctp_is_hb_timer_running(struct sctp_tcb *stcb)
-{
-	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.hb_timer.timer)) {
-		/* its running */
-		return (1);
-	} else {
-		/* nope */
-		return (0);
-	}
-}
-
-int
-sctp_is_sack_timer_running(struct sctp_tcb *stcb)
-{
-	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
-		/* its running */
-		return (1);
-	} else {
-		/* nope */
-		return (0);
-	}
-}
-
 #define SCTP_NUMBER_OF_MTU_SIZES 18
 static uint32_t mtu_sizes[] = {
 	68,

Modified: head/sys/netinet/sctp_timer.h
==============================================================================
--- head/sys/netinet/sctp_timer.h	Sun Nov  7 17:50:55 2010	(r214932)
+++ head/sys/netinet/sctp_timer.h	Sun Nov  7 17:50:56 2010	(r214933)
@@ -65,9 +65,6 @@ int
 sctp_heartbeat_timer(struct sctp_inpcb *, struct sctp_tcb *,
     struct sctp_nets *, int);
 
-int sctp_is_hb_timer_running(struct sctp_tcb *stcb);
-int sctp_is_sack_timer_running(struct sctp_tcb *stcb);
-
 int
 sctp_cookie_timer(struct sctp_inpcb *, struct sctp_tcb *,
     struct sctp_nets *);


More information about the svn-src-all mailing list