Date: Thu, 1 Nov 2018 11:41:40 +0000 (UTC) From: Michael Tuexen <tuexen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r339991 - head/sys/netinet Message-ID: <201811011141.wA1BfePk098392@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tuexen Date: Thu Nov 1 11:41:40 2018 New Revision: 339991 URL: https://svnweb.freebsd.org/changeset/base/339991 Log: Remove debug code which slipped in accidently. MFC after: 4 weeks X-MFC with: r339989 Sponsored by: Netflix, Inc. Modified: head/sys/netinet/tcp_syncache.c Modified: head/sys/netinet/tcp_syncache.c ============================================================================== --- head/sys/netinet/tcp_syncache.c Thu Nov 1 11:37:19 2018 (r339990) +++ head/sys/netinet/tcp_syncache.c Thu Nov 1 11:41:40 2018 (r339991) @@ -1744,7 +1744,6 @@ syncache_respond(struct syncache *sc, struct syncache_ th->th_seq = htonl(sc->sc_iss); else th->th_seq = htonl(sc->sc_iss + 1); -printf("SEG.SEQ=0x%x, ISS=0x%x.\n", ntohl(th->th_seq), sc->sc_iss); th->th_ack = htonl(sc->sc_irs + 1); th->th_off = sizeof(struct tcphdr) >> 2; th->th_x2 = 0;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811011141.wA1BfePk098392>