> 1. When the TCP MD5 Signature option is used on a TCP connection, > both the TCP Timestamps option and the TCP Window Scale option > are turned off. > > I think the cause and the fix are as following: > At line 987 in tcp_syncache.c 1.70, sc->sc_flags is overwritten > by SCF_SIGNATURE. By this line, SCF_TIMESTAMP and SCF_WINSCALE > are turned off. I think the operator "=" should be "|=". > > 987: - sc->sc_flags = SCF_SIGNATURE; > 987: + sc->sc_flags |= SCF_SIGNATURE;
I files this problem as kern/82963. Regards, Noritoshi Demizu _______________________________________________ freebsd-net@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "[EMAIL PROTECTED]"