blob: 7dbe952e10480b8f3fc21699b766d33fb9e8434a [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras830fe732019-02-15 18:20:58 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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 */
Dave Barach68b0fb02017-02-28 15:15:56 -050015tcp_error (NONE, "no error")
Florin Corasb5e55a22019-01-10 12:42:47 -080016tcp_error (WRONG_THREAD, "Wrong worker thread")
17tcp_error (FILTERED, "Packets filtered")
Florin Coras82b13a82017-04-25 11:58:06 -070018tcp_error (LENGTH, "inconsistent ip/tcp lengths")
Dave Barach68b0fb02017-02-28 15:15:56 -050019tcp_error (NO_LISTENER, "no listener for dst port")
20tcp_error (LOOKUP_DROPS, "lookup drops")
21tcp_error (DISPATCH, "Dispatch error")
Florin Coras00cd22d2018-04-18 13:20:18 -070022tcp_error (ENQUEUED, "Packets pushed into rx fifo")
23tcp_error (ENQUEUED_OOO, "OOO packets pushed into rx fifo")
24tcp_error (FIFO_FULL, "Packets dropped for lack of rx fifo space")
Florin Coras6792ec02017-03-13 03:49:51 -070025tcp_error (PARTIALLY_ENQUEUED, "Packets partially pushed into rx fifo")
Florin Coras00cd22d2018-04-18 13:20:18 -070026tcp_error (SEGMENT_OLD, "Old segment")
27tcp_error (SEGMENT_INVALID, "Invalid segments")
Dave Barach68b0fb02017-02-28 15:15:56 -050028tcp_error (SYNS_RCVD, "SYNs received")
Florin Coras830fe732019-02-15 18:20:58 -080029tcp_error (SPURIOUS_SYN, "Spurious SYNs received")
Dave Barach68b0fb02017-02-28 15:15:56 -050030tcp_error (SYN_ACKS_RCVD, "SYN-ACKs received")
Florin Coras222e1f412019-02-16 20:47:32 -080031tcp_error (SPURIOUS_SYN_ACK, "Spurious SYN-ACKs received")
Florin Corasa9d5bea2018-12-17 08:24:19 -080032tcp_error (MSG_QUEUE_FULL, "Events not sent for lack of msg queue space")
Dave Barach68b0fb02017-02-28 15:15:56 -050033tcp_error (CREATE_SESSION_FAIL, "Sessions couldn't be allocated")
Florin Coras00cd22d2018-04-18 13:20:18 -070034tcp_error (ACK_OK, "Pure ACKs received")
Dave Barach68b0fb02017-02-28 15:15:56 -050035tcp_error (ACK_INVALID, "Invalid ACK")
36tcp_error (ACK_DUP, "Duplicate ACK")
37tcp_error (ACK_OLD, "Old ACK")
Florin Coras6792ec02017-03-13 03:49:51 -070038tcp_error (ACK_FUTURE, "Future ACK")
Dave Barach68b0fb02017-02-28 15:15:56 -050039tcp_error (PKTS_SENT, "Packets sent")
40tcp_error (FILTERED_DUPACKS, "Filtered duplicate ACKs")
Florin Corasd79b41e2017-03-04 05:37:52 -080041tcp_error (RST_SENT, "Resets sent")
Florin Coras00cd22d2018-04-18 13:20:18 -070042tcp_error (RST_RCVD, "Resets received")
Florin Corasd79b41e2017-03-04 05:37:52 -080043tcp_error (INVALID_CONNECTION, "Invalid connection")
Florin Coras4eeeaaf2017-09-05 14:03:37 -040044tcp_error (CONNECTION_CLOSED, "Connection closed")
Pierre Pfister7fe51f32017-09-20 08:48:36 +020045tcp_error (CREATE_EXISTS, "Connection already exists")
Florin Corasdff48db2017-11-19 18:06:58 -080046tcp_error (PUNT, "Packets punted")
Florin Coras00cd22d2018-04-18 13:20:18 -070047tcp_error (OPTIONS, "Could not parse options")
48tcp_error (PAWS, "PAWS check failed")
49tcp_error (RCV_WND, "Segment not in receive window")
Florin Corasf9d05682018-04-26 08:26:52 -070050tcp_error (FIN_RCVD, "FINs received")
51tcp_error (LINK_LOCAL_RW, "No rewrite for link local connection")