diff options
author | rrs <rrs@FreeBSD.org> | 2007-06-09 13:53:27 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2007-06-09 13:53:27 +0000 |
commit | 6787a70c5fee91a175d747b25a883bd830ff1418 (patch) | |
tree | e0c9a2e937178c52ea82830487a66930239d1d11 /sys/netinet/sctp_output.c | |
parent | 4ecfa17662f61c5918ac2f9a900430917a2de0d2 (diff) | |
download | FreeBSD-src-6787a70c5fee91a175d747b25a883bd830ff1418.zip FreeBSD-src-6787a70c5fee91a175d747b25a883bd830ff1418.tar.gz |
- Opps.. takes out debug printfs I accidentally left in :-(
Diffstat (limited to 'sys/netinet/sctp_output.c')
-rw-r--r-- | sys/netinet/sctp_output.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c index 5fd251d..fda7e447 100644 --- a/sys/netinet/sctp_output.c +++ b/sys/netinet/sctp_output.c @@ -3158,7 +3158,6 @@ sctp_add_cookie(struct sctp_inpcb *inp, struct mbuf *init, int init_offset, sig_offset = 0; foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset); memset(foo, 0, SCTP_SIGNATURE_SIZE); - printf("%p is address for signature\n", foo); *signature = foo; SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE; cookie_sz += SCTP_SIGNATURE_SIZE; @@ -5020,7 +5019,6 @@ sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb, sctp_m_freem(m); return; } - printf("signature is set to %p\n", signature); /* Now append the cookie to the end and update the space/size */ SCTP_BUF_NEXT(m_tmp) = m_cookie; @@ -5046,11 +5044,6 @@ sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb, (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)], SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr), (uint8_t *) signature, SCTP_SIGNATURE_SIZE); - printf("signed first 4 bytes are %x %x %x %x\n", - signature[0], - signature[1], - signature[2], - signature[3]); /* * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return * here since the timer will drive a retranmission. |