blob: b91a08c0679fc8c8ce2bf31a24e0d665b7c1b984 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
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 */
Dave Barach68b0fb02017-02-28 15:15:56 -050015tcp_error (NONE, "no error")
16tcp_error (NO_LISTENER, "no listener for dst port")
17tcp_error (LOOKUP_DROPS, "lookup drops")
18tcp_error (DISPATCH, "Dispatch error")
Florin Corasd79b41e2017-03-04 05:37:52 -080019tcp_error (ENQUEUED, "Packets pushed into rx fifo")
Florin Coras6792ec02017-03-13 03:49:51 -070020tcp_error (PARTIALLY_ENQUEUED, "Packets partially pushed into rx fifo")
Dave Barach68b0fb02017-02-28 15:15:56 -050021tcp_error (PURE_ACK, "Pure acks")
22tcp_error (SYNS_RCVD, "SYNs received")
23tcp_error (SYN_ACKS_RCVD, "SYN-ACKs received")
Florin Corasd79b41e2017-03-04 05:37:52 -080024tcp_error (NOT_READY, "Session not ready for packets")
25tcp_error (FIFO_FULL, "Packets dropped for lack of rx fifo space")
26tcp_error (EVENT_FIFO_FULL, "Events not sent for lack of event fifo space")
Dave Barach68b0fb02017-02-28 15:15:56 -050027tcp_error (API_QUEUE_FULL, "Sessions not created for lack of API queue space")
28tcp_error (CREATE_SESSION_FAIL, "Sessions couldn't be allocated")
Florin Coras6792ec02017-03-13 03:49:51 -070029tcp_error (SEGMENT_INVALID, "Invalid segments")
30tcp_error (SEGMENT_OLD, "Old segment")
Dave Barach68b0fb02017-02-28 15:15:56 -050031tcp_error (ACK_INVALID, "Invalid ACK")
32tcp_error (ACK_DUP, "Duplicate ACK")
33tcp_error (ACK_OLD, "Old ACK")
Florin Coras6792ec02017-03-13 03:49:51 -070034tcp_error (ACK_FUTURE, "Future ACK")
Dave Barach68b0fb02017-02-28 15:15:56 -050035tcp_error (PKTS_SENT, "Packets sent")
36tcp_error (FILTERED_DUPACKS, "Filtered duplicate ACKs")
Florin Corasd79b41e2017-03-04 05:37:52 -080037tcp_error (RST_SENT, "Resets sent")
38tcp_error (INVALID_CONNECTION, "Invalid connection")
Florin Coras6792ec02017-03-13 03:49:51 -070039tcp_error (NO_WND, "No window")