Lines Matching refs:new
715 unsigned int new;
717 new = V_tcp_fastopen_autokey;
718 error = sysctl_handle_int(oidp, &new, 0, req);
720 if (new > (INT_MAX / hz))
725 if (V_tcp_fastopen_autokey && !new)
727 else if (new)
729 new * hz, tcp_fastopen_autokey_callout,
732 V_tcp_fastopen_autokey = new;
743 unsigned int new;
745 new = V_tcp_fastopen_psk_enable;
746 error = sysctl_handle_int(oidp, &new, 0, req);
748 if (V_tcp_fastopen_psk_enable && !new) {
756 } else if (!V_tcp_fastopen_psk_enable && new) {
770 unsigned int new;
772 new = V_tcp_fastopen_server_enable;
773 error = sysctl_handle_int(oidp, &new, 0, req);
775 if (V_tcp_fastopen_server_enable && !new) {
787 } else if (!V_tcp_fastopen_server_enable && new) {
856 unsigned int new;
859 new = V_tcp_fastopen_ccache.bucket_limit;
860 error = sysctl_handle_int(oidp, &new, 0, req);
862 if ((new == 0) || (new > INT_MAX))
865 if (new < V_tcp_fastopen_ccache.bucket_limit) {
869 tcp_fastopen_ccache_bucket_trim(ccb, new);
872 V_tcp_fastopen_ccache.bucket_limit = new;
884 unsigned int new, i;
886 new = V_tcp_fastopen_client_enable;
887 error = sysctl_handle_int(oidp, &new, 0, req);
889 if (V_tcp_fastopen_client_enable && !new) {
899 } else if (!V_tcp_fastopen_client_enable && new) {