Lines Matching refs:optval
972 int optval; in dccp_optsset() local
977 error = sockopt_getint(sopt, &optval); in dccp_optsset()
979 if (optval == 2 || optval == 3 || optval == 0) { in dccp_optsset()
980 dp->pref_cc = optval; in dccp_optsset()
986 error = sockopt_getint(sopt, &optval); in dccp_optsset()
987 if (optval > 15 || optval < 0) { in dccp_optsset()
990 dp->cslen = optval; in dccp_optsset()
994 error = sockopt_getint(sopt, &optval); in dccp_optsset()
995 if (optval > 0 && optval <= dp->d_maxseg) { in dccp_optsset()
996 dp->d_maxseg = optval; in dccp_optsset()
1002 error = sockopt_getint(sopt, &optval); in dccp_optsset()
1003 dp->scode = optval; in dccp_optsset()
1016 int optval = 0; in dccp_optsget() local
1021 optval = dp->pref_cc; in dccp_optsget()
1022 error = sockopt_set(sopt, &optval, sizeof(optval)); in dccp_optsget()
1025 optval = dp->cslen; in dccp_optsget()
1026 error = sockopt_set(sopt, &optval, sizeof(optval)); in dccp_optsget()
1029 optval = dp->d_maxseg; in dccp_optsget()
1030 error = sockopt_set(sopt, &optval, sizeof(optval)); in dccp_optsget()
1033 optval = dp->scode; in dccp_optsget()
1034 error = sockopt_set(sopt, &optval, sizeof(optval)); in dccp_optsget()