Lines Matching refs:error
74 int error, i;
155 error = sctp_connectx(clt_sk1, (struct sockaddr *)svr_try, NUMADDR,
158 if ((error != -1) || (EINPROGRESS != errno))
159 tst_brkm(TBROK, tst_exit, "non-blocking connectx error: %d "
160 "errno:%d", error, errno);
167 error = sctp_connectx(clt_sk1, (struct sockaddr *)svr_try, NUMADDR,
169 if ((error != -1) || (EISCONN != errno))
171 "assoc that is already established error:%d errno:%d",
172 error, errno);
187 error = test_recvmsg(clt_sk1, &inmessage, MSG_WAITALL);
188 test_check_msg_notification(&inmessage, error,
204 error = test_recvmsg(svr_sk, &inmessage, MSG_WAITALL);
205 test_check_msg_notification(&inmessage, error,
218 error = test_recvmsg(clt_sk2, &inmessage, MSG_WAITALL);
219 test_check_msg_notification(&inmessage, error,
226 error = test_recvmsg(svr_sk, &inmessage, MSG_WAITALL);
227 test_check_msg_notification(&inmessage, error,
238 error = sctp_connectx(peeloff_sk, (struct sockaddr *)clt_loop3, NUMADDR,
240 if ((error != -1) || (EISCONN != errno))
242 "error:%d, errno:%d", error, errno);
249 error = sctp_connectx(svr_sk, (struct sockaddr *)clt_loop1, NUMADDR,
251 if ((error != -1) || (EADDRNOTAVAIL != errno))
253 "matches a peeled off assoc error:%d errno:%d",
254 error, errno);