Lines Matching refs:abort

573 		 * This means that if we only want to abort associations
755 * [We should abort the association. --piggy]
1271 /* Helper function to send out an abort for the restart
1853 struct sctp_chunk *abort;
1855 abort = sctp_make_abort(asoc, NULL, sizeof(struct sctp_errhdr));
1856 if (abort) {
1857 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
1858 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
2177 * [We should abort the association. --piggy]
2718 * Stop T1 timer and abort association with "INIT failed".
3414 struct sctp_chunk *abort;
3423 abort = sctp_make_abort(asoc, chunk, 0);
3424 if (!abort) {
3430 if (sctp_test_T_bit(abort))
3434 abort->skb->sk = ep->base.sk;
3436 sctp_packet_append_chunk(packet, abort);
3909 struct sctp_chunk *abort;
3956 abort = sctp_make_abort(asoc, asconf_ack,
3958 if (abort) {
3959 sctp_init_cause(abort, SCTP_ERROR_ASCONF_ACK, 0);
3961 SCTP_CHUNK(abort));
3988 abort = sctp_make_abort(asoc, asconf_ack,
3990 if (abort) {
3991 sctp_init_cause(abort, SCTP_ERROR_RSRC_LOW, 0);
3993 SCTP_CHUNK(abort));
4598 struct sctp_chunk *abort = NULL;
4606 * This means that if we only want to abort associations
4614 /* Make the abort chunk. */
4615 abort = sctp_make_abort_violation(asoc, chunk, payload, paylen);
4616 if (!abort)
4627 abort->chunk_hdr->flags |= SCTP_CHUNK_FLAG_T;
4637 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
4660 if (sctp_test_T_bit(abort))
4663 abort->skb->sk = ep->base.sk;
4665 sctp_packet_append_chunk(packet, abort);
4680 sctp_chunk_free(abort);
4733 struct sctp_chunk *abort = NULL;
4739 /* Make the abort chunk. */
4740 abort = sctp_make_violation_paramlen(asoc, chunk, param);
4741 if (!abort)
4744 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
5056 * attempting to abort the association results in a failure, an error
5065 * o cause code - reason of the abort to be passed to the peer
5087 struct sctp_chunk *abort = arg;
5089 if (abort)
5090 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
5208 * state table when someone issues an abort while in COOKIE_WAIT state.
5221 struct sctp_chunk *abort = arg;
5227 if (abort)
5228 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(abort));
5257 * state table when someone issues an abort while in COOKIE_ECHOED state.
5283 * state table when someone issues an abort while in SHUTDOWN-PENDING state.
5310 * state table when someone issues an abort while in SHUTDOWN-SENT state.
5341 * state table when someone issues an abort while in COOKIE_ECHOED state.
5790 * endpoint MUST abort the initialization process and report the
5855 * After that, the endpoint MUST abort the initialization process and
6053 * At the expiration of this timer the sender SHOULD abort the association
6226 struct sctp_chunk *abort;
6234 abort = sctp_make_abort(asoc, chunk, paylen);
6235 if (!abort) {
6241 if (sctp_test_T_bit(abort))
6247 sctp_addto_chunk(abort, paylen, payload);
6250 abort->skb->sk = ep->base.sk;
6252 sctp_packet_append_chunk(packet, abort);