summaryrefslogtreecommitdiffstats
path: root/sys/netinet/sctp_input.c
diff options
context:
space:
mode:
authorrrs <rrs@FreeBSD.org>2007-06-09 13:53:27 +0000
committerrrs <rrs@FreeBSD.org>2007-06-09 13:53:27 +0000
commit6787a70c5fee91a175d747b25a883bd830ff1418 (patch)
treee0c9a2e937178c52ea82830487a66930239d1d11 /sys/netinet/sctp_input.c
parent4ecfa17662f61c5918ac2f9a900430917a2de0d2 (diff)
downloadFreeBSD-src-6787a70c5fee91a175d747b25a883bd830ff1418.zip
FreeBSD-src-6787a70c5fee91a175d747b25a883bd830ff1418.tar.gz
- Opps.. takes out debug printfs I accidentally left in :-(
Diffstat (limited to 'sys/netinet/sctp_input.c')
-rw-r--r--sys/netinet/sctp_input.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/netinet/sctp_input.c b/sys/netinet/sctp_input.c
index 1c4bb2e..c5fde7b 100644
--- a/sys/netinet/sctp_input.c
+++ b/sys/netinet/sctp_input.c
@@ -1870,15 +1870,6 @@ sctp_handle_cookie_echo(struct mbuf *m, int iphlen, int offset,
/* compare the received digest with the computed digest */
if (memcmp(calc_sig, sig, SCTP_SIGNATURE_SIZE) != 0) {
/* try the old cookie? */
- printf("Signature size is %d\n", SCTP_SIGNATURE_SIZE);
- printf("Signature %x %x %x %x %x %x %x %x\n",
- sig[0], sig[1], sig[2], sig[3],
- sig[4], sig[5], sig[6], sig[7]);
-
- printf("Calc Signature %x %x %x %x %x %x %x %x\n",
- calc_sig[0], calc_sig[1], calc_sig[2], calc_sig[3],
- calc_sig[4], calc_sig[5], calc_sig[6], calc_sig[7]);
-
if ((cookie->time_entered.tv_sec == (long)ep->time_of_secret_change) &&
(ep->current_secret_number != ep->last_secret_number)) {
/* compute digest with old */
OpenPOWER on IntegriCloud