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

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

Committer:
wolfSSL
Date:
Tue Aug 22 10:48:22 2017 +0000
Revision:
13:f67a6c6013ca
Parent:
11:cee25a834751
wolfSSL3.12.0 with TLS1.3

Who changed what in which revision?

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