wolfSSL SSL/TLS library, support up to TLS1.3

Dependents:   CyaSSL-Twitter-OAuth4Tw Example-client-tls-cert TwitterReader TweetTest ... more

Committer:
wolfSSL
Date:
Tue May 02 08:44:47 2017 +0000
Revision:
7:481bce714567
wolfSSL3.10.2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 7:481bce714567 1 /* sniffer_error.h
wolfSSL 7:481bce714567 2 *
wolfSSL 7:481bce714567 3 * Copyright (C) 2006-2016 wolfSSL Inc.
wolfSSL 7:481bce714567 4 *
wolfSSL 7:481bce714567 5 * This file is part of wolfSSL.
wolfSSL 7:481bce714567 6 *
wolfSSL 7:481bce714567 7 * wolfSSL is free software; you can redistribute it and/or modify
wolfSSL 7:481bce714567 8 * it under the terms of the GNU General Public License as published by
wolfSSL 7:481bce714567 9 * the Free Software Foundation; either version 2 of the License, or
wolfSSL 7:481bce714567 10 * (at your option) any later version.
wolfSSL 7:481bce714567 11 *
wolfSSL 7:481bce714567 12 * wolfSSL is distributed in the hope that it will be useful,
wolfSSL 7:481bce714567 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wolfSSL 7:481bce714567 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wolfSSL 7:481bce714567 15 * GNU General Public License for more details.
wolfSSL 7:481bce714567 16 *
wolfSSL 7:481bce714567 17 * You should have received a copy of the GNU General Public License
wolfSSL 7:481bce714567 18 * along with this program; if not, write to the Free Software
wolfSSL 7:481bce714567 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
wolfSSL 7:481bce714567 20 */
wolfSSL 7:481bce714567 21
wolfSSL 7:481bce714567 22
wolfSSL 7:481bce714567 23
wolfSSL 7:481bce714567 24 #ifndef WOLFSSL_SNIFFER_ERROR_H
wolfSSL 7:481bce714567 25 #define WOLFSSL_SNIFFER_ERROR_H
wolfSSL 7:481bce714567 26
wolfSSL 7:481bce714567 27 /* need to have errors as #defines since .rc files can't handle enums */
wolfSSL 7:481bce714567 28 /* need to start at 1 and go in order for same reason */
wolfSSL 7:481bce714567 29
wolfSSL 7:481bce714567 30 #define MEMORY_STR 1
wolfSSL 7:481bce714567 31 #define NEW_SERVER_STR 2
wolfSSL 7:481bce714567 32 #define IP_CHECK_STR 3
wolfSSL 7:481bce714567 33 #define SERVER_NOT_REG_STR 4
wolfSSL 7:481bce714567 34 #define TCP_CHECK_STR 5
wolfSSL 7:481bce714567 35 #define SERVER_PORT_NOT_REG_STR 6
wolfSSL 7:481bce714567 36 #define RSA_DECRYPT_STR 7
wolfSSL 7:481bce714567 37 #define RSA_DECODE_STR 8
wolfSSL 7:481bce714567 38 #define BAD_CIPHER_SPEC_STR 9
wolfSSL 7:481bce714567 39 #define SERVER_HELLO_INPUT_STR 10
wolfSSL 7:481bce714567 40
wolfSSL 7:481bce714567 41 #define BAD_SESSION_RESUME_STR 11
wolfSSL 7:481bce714567 42 #define SERVER_DID_RESUMPTION_STR 12
wolfSSL 7:481bce714567 43 #define CLIENT_HELLO_INPUT_STR 13
wolfSSL 7:481bce714567 44 #define CLIENT_RESUME_TRY_STR 14
wolfSSL 7:481bce714567 45 #define HANDSHAKE_INPUT_STR 15
wolfSSL 7:481bce714567 46 #define GOT_HELLO_VERIFY_STR 16
wolfSSL 7:481bce714567 47 #define GOT_SERVER_HELLO_STR 17
wolfSSL 7:481bce714567 48 #define GOT_CERT_REQ_STR 18
wolfSSL 7:481bce714567 49 #define GOT_SERVER_KEY_EX_STR 19
wolfSSL 7:481bce714567 50 #define GOT_CERT_STR 20
wolfSSL 7:481bce714567 51
wolfSSL 7:481bce714567 52 #define GOT_SERVER_HELLO_DONE_STR 21
wolfSSL 7:481bce714567 53 #define GOT_FINISHED_STR 22
wolfSSL 7:481bce714567 54 #define GOT_CLIENT_HELLO_STR 23
wolfSSL 7:481bce714567 55 #define GOT_CLIENT_KEY_EX_STR 24
wolfSSL 7:481bce714567 56 #define GOT_CERT_VER_STR 25
wolfSSL 7:481bce714567 57 #define GOT_UNKNOWN_HANDSHAKE_STR 26
wolfSSL 7:481bce714567 58 #define NEW_SESSION_STR 27
wolfSSL 7:481bce714567 59 #define BAD_NEW_SSL_STR 28
wolfSSL 7:481bce714567 60 #define GOT_PACKET_STR 29
wolfSSL 7:481bce714567 61 #define NO_DATA_STR 30
wolfSSL 7:481bce714567 62
wolfSSL 7:481bce714567 63 #define BAD_SESSION_STR 31
wolfSSL 7:481bce714567 64 #define GOT_OLD_CLIENT_HELLO_STR 32
wolfSSL 7:481bce714567 65 #define OLD_CLIENT_INPUT_STR 33
wolfSSL 7:481bce714567 66 #define OLD_CLIENT_OK_STR 34
wolfSSL 7:481bce714567 67 #define BAD_OLD_CLIENT_STR 35
wolfSSL 7:481bce714567 68 #define BAD_RECORD_HDR_STR 36
wolfSSL 7:481bce714567 69 #define RECORD_INPUT_STR 37
wolfSSL 7:481bce714567 70 #define GOT_HANDSHAKE_STR 38
wolfSSL 7:481bce714567 71 #define BAD_HANDSHAKE_STR 39
wolfSSL 7:481bce714567 72 #define GOT_CHANGE_CIPHER_STR 40
wolfSSL 7:481bce714567 73
wolfSSL 7:481bce714567 74 #define GOT_APP_DATA_STR 41
wolfSSL 7:481bce714567 75 #define BAD_APP_DATA_STR 42
wolfSSL 7:481bce714567 76 #define GOT_ALERT_STR 43
wolfSSL 7:481bce714567 77 #define ANOTHER_MSG_STR 44
wolfSSL 7:481bce714567 78 #define REMOVE_SESSION_STR 45
wolfSSL 7:481bce714567 79 #define KEY_FILE_STR 46
wolfSSL 7:481bce714567 80 #define BAD_IPVER_STR 47
wolfSSL 7:481bce714567 81 #define BAD_PROTO_STR 48
wolfSSL 7:481bce714567 82 #define PACKET_HDR_SHORT_STR 49
wolfSSL 7:481bce714567 83 #define GOT_UNKNOWN_RECORD_STR 50
wolfSSL 7:481bce714567 84
wolfSSL 7:481bce714567 85 #define BAD_TRACE_FILE_STR 51
wolfSSL 7:481bce714567 86 #define FATAL_ERROR_STR 52
wolfSSL 7:481bce714567 87 #define PARTIAL_INPUT_STR 53
wolfSSL 7:481bce714567 88 #define BUFFER_ERROR_STR 54
wolfSSL 7:481bce714567 89 #define PARTIAL_ADD_STR 55
wolfSSL 7:481bce714567 90 #define DUPLICATE_STR 56
wolfSSL 7:481bce714567 91 #define OUT_OF_ORDER_STR 57
wolfSSL 7:481bce714567 92 #define OVERLAP_DUPLICATE_STR 58
wolfSSL 7:481bce714567 93 #define OVERLAP_REASSEMBLY_BEGIN_STR 59
wolfSSL 7:481bce714567 94 #define OVERLAP_REASSEMBLY_END_STR 60
wolfSSL 7:481bce714567 95
wolfSSL 7:481bce714567 96 #define MISSED_CLIENT_HELLO_STR 61
wolfSSL 7:481bce714567 97 #define GOT_HELLO_REQUEST_STR 62
wolfSSL 7:481bce714567 98 #define GOT_SESSION_TICKET_STR 63
wolfSSL 7:481bce714567 99 #define BAD_INPUT_STR 64
wolfSSL 7:481bce714567 100 #define BAD_DECRYPT_TYPE 65
wolfSSL 7:481bce714567 101 #define BAD_FINISHED_MSG 66
wolfSSL 7:481bce714567 102 #define BAD_COMPRESSION_STR 67
wolfSSL 7:481bce714567 103 #define BAD_DERIVE_STR 68
wolfSSL 7:481bce714567 104 #define ACK_MISSED_STR 69
wolfSSL 7:481bce714567 105 #define BAD_DECRYPT 70
wolfSSL 7:481bce714567 106
wolfSSL 7:481bce714567 107 #define DECRYPT_KEYS_NOT_SETUP 71
wolfSSL 7:481bce714567 108 #define CLIENT_HELLO_LATE_KEY_STR 72
wolfSSL 7:481bce714567 109 #define GOT_CERT_STATUS_STR 73
wolfSSL 7:481bce714567 110 #define RSA_KEY_MISSING_STR 74
wolfSSL 7:481bce714567 111 #define NO_SECURE_RENEGOTIATION 75
wolfSSL 7:481bce714567 112
wolfSSL 7:481bce714567 113 #define BAD_SESSION_STATS 76
wolfSSL 7:481bce714567 114 #define REASSEMBLY_MAX_STR 77
wolfSSL 7:481bce714567 115 #define DROPPING_LOST_FRAG_STR 78
wolfSSL 7:481bce714567 116 #define DROPPING_PARTIAL_RECORD 79
wolfSSL 7:481bce714567 117 #define CLEAR_ACK_FAULT 80
wolfSSL 7:481bce714567 118
wolfSSL 7:481bce714567 119 #define BAD_DECRYPT_SIZE 81
wolfSSL 7:481bce714567 120 #define EXTENDED_MASTER_HASH_STR 82
wolfSSL 7:481bce714567 121 /* !!!! also add to msgTable in sniffer.c and .rc file !!!! */
wolfSSL 7:481bce714567 122
wolfSSL 7:481bce714567 123
wolfSSL 7:481bce714567 124 #endif /* wolfSSL_SNIFFER_ERROR_H */
wolfSSL 7:481bce714567 125
wolfSSL 7:481bce714567 126