blob: 7326301e862f40c4c51b7741293d9718356d1bdb [file] [log] [blame]
Marco Varlese191a5942017-10-30 18:17:21 +01001/*
2 * Copyright (c) 2017 SUSE LLC.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15sctp_error (NONE, "no error")
16sctp_error (PKTS_SENT, "Packets sent")
17sctp_error (INVALID_CONNECTION, "Invalid connection")
18sctp_error (INVALID_TAG, "Invalid verification tag")
19sctp_error (INVALID_TAG_FOR_INIT, "Invalid verification tag for INIT chunk")
20sctp_error (CONNECTION_CLOSED, "Connection closed")
21sctp_error (ENQUEUED, "Packets pushed into rx fifo")
22sctp_error (CREATE_EXISTS, "Connection already exists")
23sctp_error (INITS_RCVD, "INITs received")
24sctp_error (CREATE_SESSION_FAIL, "Sessions couldn't be allocated")
25sctp_error (NO_LISTENER, "no listener for dst port")
Marco Varlese3c6a9762018-03-01 11:19:59 +010026sctp_error (LENGTH, "inconsistent ip/sctp lengths")
Marco Varlese191a5942017-10-30 18:17:21 +010027sctp_error (DISPATCH, "Dispatch error")
28sctp_error (ACK_DUP, "Duplicate ACK")
29sctp_error (DATA_CHUNK_VIOLATION, "DATA chunk received in invalid state")
30sctp_error (INIT_CHUNK_VIOLATION, "INIT chunk received in the wrong state")
31sctp_error (INIT_ACK_CHUNK_VIOLATION, "INIT_ACK chunk received in the wrong state")
32sctp_error (SACK_CHUNK_VIOLATION, "SACK chunk received in invalid state")
33sctp_error (HEARTBEAT_CHUNK_VIOLATION, "HEARTBEAT chunk received in invalid state")
34sctp_error (HEARTBEAT_ACK_CHUNK_VIOLATION, "HEARTBEAT_ACK chunk received in invalid state")
35sctp_error (ABORT_CHUNK_VIOLATION, "ABORT_CHUNK chunk received in invalid state")
36sctp_error (SHUTDOWN_CHUNK_VIOLATION, "SHUTDOWN chunk received in invalid state")
37sctp_error (SHUTDOWN_ACK_CHUNK_VIOLATION, "SHUTDOWN_ACK chunk received in invalid state")
38sctp_error (OPERATION_ERROR_VIOLATION, "OPERATION_ERROR chunk received in invalid state")
39sctp_error (COOKIE_ECHO_VIOLATION, "COOKIE_ECHO chunk received in invalid state")
40sctp_error (COOKIE_ACK_VIOLATION, "COOKIE_ACK chunk received in invalid state")
41sctp_error (ECNE_VIOLATION, "ECNE chunk received in invalid state")
42sctp_error (CWR_VIOLATION, "CWR chunk received in invalid state")
43sctp_error (SHUTDOWN_COMPLETE_VIOLATION, "SHUTDOWN_COMPLETE chunk received in invalid state")
44sctp_error (FIFO_FULL, "Packets dropped for lack of rx fifo space")
45sctp_error (PARTIALLY_ENQUEUED, "Packets partially pushed into rx fifo")
46sctp_error (EVENT_FIFO_FULL, "Events not sent for lack of event fifo space")
Andrey "Zed" Zaikin701625b2018-04-18 17:07:07 +030047sctp_error (UNKNOWN_CHUNK, "Unrecognized / unknown chunk or chunk-state mismatch")
Marco Varlese191a5942017-10-30 18:17:21 +010048sctp_error (BUNDLING_VIOLATION, "Bundling not allowed")
49sctp_error (PUNT, "Packets punted")
Marco Varlese3c6a9762018-03-01 11:19:59 +010050sctp_error (FILTERED, "Packets filtered")
Andrey "Zed" Zaikin701625b2018-04-18 17:07:07 +030051sctp_error (MAX_CONNECTIONS, "Reached max supported subconnection")